Skip to content

Commit dc385fe

Browse files
committed
Merge pull request #72 from jpinsonault/maint-bump-version-to-1.0.0
(MAINT) bump and relabel version 0.9.4 to 1.0.0
2 parents 2b55e3b + d631275 commit dc385fe

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## 0.9.4
1+
## 1.0.0
22

33
This is a bugfix release.
4+
The API is stable enough and the code is being used in production, so the version is also being bumped to 1.0.0
45

56
* Fixed a bug wherein calling "Hocon.load" would not
67
resolve substitutions.

Gemfile.lock

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
hocon (0.9.4)
4+
hocon (1.0.0)
55

66
GEM
77
remote: https://rubygems.org/
@@ -24,6 +24,3 @@ DEPENDENCIES
2424
bundler (~> 1.5)
2525
hocon!
2626
rspec (~> 2.14)
27-
28-
BUNDLED WITH
29-
1.10.6

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@ This is a port of the [Typesafe Config](https://github.com/typesafehub/config) l
88
The library provides Ruby support for the [HOCON](https://github.com/typesafehub/config/blob/master/HOCON.md) configuration file format.
99

1010

11-
At present, it supports supports parsing and modification of existing HOCON/JSON files via the `ConfigFactory` class and the `ConfigValueFactory` class, and rendering parsed config objects back to a String.
12-
It also supports the parsing and modification of HOCON/JSON files via `ConfigDocumentFactory`.
13-
PLEASE NOTE this project is in an experimental state, and in some cases may not work properly, so
14-
please be wary when using it. If you find a problem, feel free to open a github issue.
11+
At present, it supports supports parsing and modification of existing HOCON/JSON files via the `ConfigFactory`
12+
class and the `ConfigValueFactory` class, and rendering parsed config objects back to a String
13+
([see examples below](#basic-usage)). It also supports the parsing and modification of HOCON/JSON files via
14+
`ConfigDocumentFactory`.
1515

16-
The implementation is intended to be as close to a line-for-line port as the two languages allow, in hopes of making it fairly easy to port over new changesets from the Java code base over time.
16+
**Note:** While the project is production ready, since not all features in the Typesafe library are supported,
17+
you may still run into some issues. If you find a problem, feel free to open a github issue.
18+
19+
The implementation is intended to be as close to a line-for-line port as the two languages allow,
20+
in hopes of making it fairly easy to port over new changesets from the Java code base over time.
1721

1822
Basic Usage
1923
===========
@@ -64,7 +68,8 @@ bundle exec rspec spec
6468
Unsupported Features
6569
====================
6670

67-
This supports many of the same things as the Java library, but there are some notable exceptions. Unsupported features include:
71+
This supports many of the same things as the Java library, but there are some notable exceptions.
72+
Unsupported features include:
6873

6974
* Non file includes
7075
* Loading resources from the class path or URLs

hocon.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.name = 'hocon'
3-
s.version = '0.9.4'
4-
s.date = '2016-02-11'
3+
s.version = '1.0.0'
4+
s.date = '2016-02-16'
55
s.summary = "HOCON Config Library"
66
s.description = "== A port of the Java {Typesafe Config}[https://github.com/typesafehub/config] library to Ruby"
77
s.authors = ["Chris Price", "Wayne Warren", "Preben Ingvaldsen", "Joe Pinsonault", "Kevin Corcoran"]

0 commit comments

Comments
 (0)