Skip to content

Commit

Permalink
Prepare 1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
pkuczynski committed May 11, 2016
1 parent 813e504 commit 611db54
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
36 changes: 20 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.1

* Downgrade minimum ruby version to 2.0.0 ([#136](https://github.com/railsconfig/config/issues/136))

## 1.1.0

* Add ability to specify knockout_prefix option for deep_merge
Expand All @@ -8,42 +12,42 @@
## 1.0.0

* `RailsConfig` is now officially renamed to `Config`
* Fixed array descent when converting to hash ([##89](https://github.com/railsconfig/config/pull/89))
* Catch OpenStruct reserved keywords ([##95](https://github.com/railsconfig/config/pull/95) thanks @dudo)
* Allows loading before app configuration process ([##107](https://github.com/railsconfig/config/pull/107) thanks @Antiarchitect)
* `deep_merge` is now properly managed via gemspec ([##110](https://github.com/railsconfig/config/pull/110))
* Added `prepend_source!` ([##102](https://github.com/railsconfig/config/pull/102))
* Fixed array descent when converting to hash ([#89](https://github.com/railsconfig/config/pull/89))
* Catch OpenStruct reserved keywords ([#95](https://github.com/railsconfig/config/pull/95) thanks @dudo)
* Allows loading before app configuration process ([#107](https://github.com/railsconfig/config/pull/107) thanks @Antiarchitect)
* `deep_merge` is now properly managed via gemspec ([#110](https://github.com/railsconfig/config/pull/110))
* Added `prepend_source!` ([#102](https://github.com/railsconfig/config/pull/102))

## 0.99

* Released deprecated gem migrating to the new name

## 0.5.0.beta1

* Ability to use in Settings file keywords reserved for OpenStruct: select, collect ([##95](https://github.com/railsjedi/config/issues/95))
* Made config work without Rails as a hard dependency ([##86](https://github.com/railsjedi/config/issues/86), [##88](https://github.com/railsjedi/config/issues/88))
* Fix generate error when .gitignore is missing ([##85](https://github.com/railsjedi/config/issues/85))
* Fix deprecation warning on File.exists? ([##81](https://github.com/railsjedi/config/issues/81))
* Add a shortcut method for setting files ([##67](https://github.com/railsjedi/config/issues/67))
* Improve YAMLSource load error message by outputting offending file path ([##88](https://github.com/railsjedi/config/issues/88))
* Ability to use in Settings file keywords reserved for OpenStruct: select, collect ([#95](https://github.com/railsjedi/config/issues/95))
* Made config work without Rails as a hard dependency ([#86](https://github.com/railsjedi/config/issues/86), [#88](https://github.com/railsjedi/config/issues/88))
* Fix generate error when .gitignore is missing ([#85](https://github.com/railsjedi/config/issues/85))
* Fix deprecation warning on File.exists? ([#81](https://github.com/railsjedi/config/issues/81))
* Add a shortcut method for setting files ([#67](https://github.com/railsjedi/config/issues/67))
* Improve YAMLSource load error message by outputting offending file path ([#88](https://github.com/railsjedi/config/issues/88))

## 0.4.2

* Ability to specify the app name when calling the Heroku rake task ([##75](https://github.com/railsjedi/config/issues/75))
* Ability to specify the app name when calling the Heroku rake task ([#75](https://github.com/railsjedi/config/issues/75))

## 0.4.1

* Fixed compatibility with Rails 4.1 ([##72](https://github.com/railsjedi/config/issues/72))
* Fixed compatibility with Rails 4.1 ([#72](https://github.com/railsjedi/config/issues/72))
* Testing suite verifies compatibility with Rails 3.2, 4.0 and 4.1

## 0.4.0

* Compatibility with Heroku ([##64](https://github.com/railsjedi/config/issues/64))
* Compatibility with Heroku ([#64](https://github.com/railsjedi/config/issues/64))

## 0.3.4

* Expose Settings in application.rb, so you don't have to duplicate configuration for each environment file ([##59](https://github.com/railsjedi/config/issues/59))
* Adding support for Rails 4.1.0.rc ([##70](https://github.com/railsjedi/config/issues/70))
* Expose Settings in application.rb, so you don't have to duplicate configuration for each environment file ([#59](https://github.com/railsjedi/config/issues/59))
* Adding support for Rails 4.1.0.rc ([#70](https://github.com/railsjedi/config/issues/70))



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 = '1.1.0'
VERSION = '1.1.1'
end

0 comments on commit 611db54

Please sign in to comment.