Skip to content

Commit

Permalink
Merge branch 'master' into feat/add-rails-credentials-support
Browse files Browse the repository at this point in the history
  • Loading branch information
noxasch authored Sep 17, 2024
2 parents de1bb93 + 86c47f2 commit 4d4ffda
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# 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

* 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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/`
Expand Down
5 changes: 1 addition & 4 deletions config.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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_uri' => 'https://opencollective.com/rubyconfig/donate',
'source_code_uri' => 'https://github.com/rubyconfig/config',
'bug_tracker_uri' => 'https://github.com/rubyconfig/config/issues'
}
Expand Down
2 changes: 1 addition & 1 deletion lib/config/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Config
VERSION = '5.4.0'.freeze
VERSION = '5.5.1'.freeze
end

0 comments on commit 4d4ffda

Please sign in to comment.