Skip to content

Commit 8e25353

Browse files
committed
Prepare 1.2.0 release
1 parent 0797b6a commit 8e25353

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Changelog
22

3-
## Latest changes
3+
## 1.2.0
44

5+
* Add ability to load settings from ENV variables ([#108](https://github.com/railsconfig/config/issues/108) thanks @vinceve and @spalladino)
56
* Removed Rails 5 deprecation warnings for prepend_before_filter ([#141](https://github.com/railsconfig/config/pull/141)
67

78
## 1.1.1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ Config helps you easily manage environment specific settings in an easy and usab
2323
## Compatibility
2424

2525
* Ruby `2.x`
26-
* Rails `>= 3.1` and `4`
26+
* Rails `>= 3.1`, `4` and `5`
2727
* Padrino
2828
* Sinatra
2929

3030
For older versions of Rails or Ruby use [AppConfig](http://github.com/fredwu/app_config).
3131

3232
## Installing
3333

34-
### Installing on Rails 3 or 4
34+
### Installing on Rails 3, 4 or 5
3535

3636
Add `gem 'config'` to your `Gemfile` and run `bundle install` to install it. Then run
3737

@@ -370,8 +370,8 @@ mdl --style .mdlstyle.rb *.md
370370

371371
## Authors
372372

373-
* [Fred Wu](http://github.com/fredwu)
374373
* [Piotr Kuczynski](http://github.com/pkuczynski)
374+
* [Fred Wu](http://github.com/fredwu)
375375
* [Jacques Crocker](http://github.com/railsjedi)
376376
* Inherited from [AppConfig](http://github.com/cjbottaro/app_config) by [Christopher J. Bottaro](http://github.com/cjbottaro)
377377

config.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
88
s.name = 'config'
99
s.version = Config::VERSION
1010
s.date = Time.now.strftime '%F'
11-
s.authors = ['Jacques Crocker', 'Fred Wu', 'Piotr Kuczynski']
12-
s.email = %w(railsjedi@gmail.com ifredwu@gmail.com piotr.kuczynski@gmail.com)
11+
s.authors = ['Piotr Kuczynski', 'Fred Wu', 'Jacques Crocker']
12+
s.email = %w(piotr.kuczynski@gmail.com ifredwu@gmail.com railsjedi@gmail.com)
1313
s.summary = 'Effortless multi-environment settings in Rails, Sinatra, Pandrino and others'
1414
s.description = 'Easiest way to manage multi-environment settings in any ruby project or framework: Rails, Sinatra, Pandrino and others'
1515
s.homepage = 'https://github.com/railsconfig/config'

lib/config/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Config
2-
VERSION = '1.1.1'
2+
VERSION = '1.2.0'
33
end

0 commit comments

Comments
 (0)