From d02bc80d24bd3c235cee8b8b495e3557614a6224 Mon Sep 17 00:00:00 2001 From: Paul Annesley Date: Tue, 28 May 2024 17:36:03 +0930 Subject: [PATCH 1/5] config.gemspec: use funding_url rather than post_install_message (#360) --- config.gemspec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/config.gemspec b/config.gemspec index 59e73f62..4e177330 100644 --- a/config.gemspec +++ b/config.gemspec @@ -14,13 +14,10 @@ Gem::Specification.new do |s| s.license = 'MIT' s.extra_rdoc_files = %w[README.md CHANGELOG.md CONTRIBUTING.md LICENSE.md] s.rdoc_options = ['--charset=UTF-8'] - s.post_install_message = "\n\e[33mThanks for installing Config\e[0m -Please consider donating to our open collective to help us maintain this project. -\n -Donate: \e[34mhttps://opencollective.com/rubyconfig/donate\e[0m\n" s.metadata = { 'changelog_uri' => "https://github.com/rubyconfig/config/blob/master/CHANGELOG.md", + 'funding_url' => 'https://opencollective.com/rubyconfig/donate', 'source_code_uri' => 'https://github.com/rubyconfig/config', 'bug_tracker_uri' => 'https://github.com/rubyconfig/config/issues' } From d4079a6dcfbeaca5c45c6270117ebde211ec5a66 Mon Sep 17 00:00:00 2001 From: Piotr Kuczynski Date: Tue, 28 May 2024 10:16:42 +0200 Subject: [PATCH 2/5] Bump to version 5.5.0 --- CHANGELOG.md | 11 +++++++++++ lib/config/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e49a63ff..ba74ebfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 5.5.0 + +### New features + +* Allow arrays to be passed through env variables ([#354](https://github.com/rubyconfig/config/pull/354)) + +### Documentation + +* Use funding_url rather than post_install_message ([#360](https://github.com/rubyconfig/config/pull/360)) +* Fix typos in the tests and documentation ([#359](https://github.com/rubyconfig/config/pull/359)) + ## 5.4.0 ### New features diff --git a/lib/config/version.rb b/lib/config/version.rb index a4dcdf24..9b59d24a 100644 --- a/lib/config/version.rb +++ b/lib/config/version.rb @@ -1,3 +1,3 @@ module Config - VERSION = '5.4.0'.freeze + VERSION = '5.5.0'.freeze end From d27597d8270237a7f7105572f031d690a57bcfe8 Mon Sep 17 00:00:00 2001 From: y-yagi Date: Thu, 30 May 2024 10:12:10 +0900 Subject: [PATCH 3/5] Fix a typo in gemspec (#361) According to the document, `funding_uri` is a correct key, not `funding_url`. * https://bundler.io/blog/2020/12/09/bundler-v2-2.html#find-out-about-gems-you-depend-on-that-need-funding * https://guides.rubygems.org/specification-reference/#metadata --- config.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.gemspec b/config.gemspec index 4e177330..3d59e769 100644 --- a/config.gemspec +++ b/config.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |s| s.metadata = { 'changelog_uri' => "https://github.com/rubyconfig/config/blob/master/CHANGELOG.md", - 'funding_url' => 'https://opencollective.com/rubyconfig/donate', + 'funding_uri' => 'https://opencollective.com/rubyconfig/donate', 'source_code_uri' => 'https://github.com/rubyconfig/config', 'bug_tracker_uri' => 'https://github.com/rubyconfig/config/issues' } From fda3e8257a2b1f535ad2650efa39852b517c3dd7 Mon Sep 17 00:00:00 2001 From: Piotr Kuczynski Date: Thu, 30 May 2024 03:14:41 +0200 Subject: [PATCH 4/5] Bump to version 5.5.1 --- CHANGELOG.md | 6 ++++++ lib/config/version.rb | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba74ebfc..e75c941f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 5.5.1 + +### Documentation + +* Fix funding_url to funding_uri in gemspec ([#361](https://github.com/rubyconfig/config/pull/361)) + ## 5.5.0 ### New features diff --git a/lib/config/version.rb b/lib/config/version.rb index 9b59d24a..86a84e2f 100644 --- a/lib/config/version.rb +++ b/lib/config/version.rb @@ -1,3 +1,3 @@ module Config - VERSION = '5.5.0'.freeze + VERSION = '5.5.1'.freeze end From 86c47f25f3ed1eb29827bfcf6f1a30d811a964b7 Mon Sep 17 00:00:00 2001 From: Mark Delk Date: Fri, 19 Jul 2024 18:35:46 -0500 Subject: [PATCH 5/5] fix a README typo (#362) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2cdc34c0..d979634c 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ After installing `Config` in Rails, you will find automatically generated file t ### General -* `const_name` - name of the object holing you settings. Default: `'Settings'` +* `const_name` - name of the object holding your settings. Default: `'Settings'` * `evaluate_erb_in_yaml` - evaluate ERB in YAML config files. Set to false if the config file contains ERB that should not be evaluated at load time. Default: `true` * `file_name` - name of the file to store general keys accessible in all environments. Default: `'settings'` - located at `config/settings.yml` * `dir_name` - name of the directory to store environment-specific files. Default: `'settings'` - located at `config/settings/`