Skip to content

Commit

Permalink
Preparing v1.0.0 (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex authored Jul 31, 2017
1 parent e1caf0b commit 960c208
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 10 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Changelog

## v1.0.0-rc2 (unreleased)
## v1.0.0 (07-31-2017)

First stable release: no breaking changes will be made in the 1.x series.

- **[Breaking]** `ValueType` and `GetType` functionality is removed in favor of using
`reflect.Kind`.
Expand All @@ -17,6 +19,6 @@
- **[Breaking]** Unexport NewYAMLProviderFromReader* functions.
- **[Breaking]** `NewProviderGroup` returns an error.

## v1.0.0-rc1 (26 Jun 2017)
## v1.0.0-rc1 (06-26-2017)

- **[Breaking]** `Provider` interface was trimmed down to 2 methods: `Name` and `Get`
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,20 @@ Package `config` allows users to:
* Get components working with minimal configuration
* Override any field if the default doesn't make sense for their use case

## Installation
We recommend locking to [SemVer](http://semver.org/) range `^1` using
[Glide](https://github.com/Masterminds/glide):

```
glide get 'go.uber.org/config#^1
```

## Stability

This library is `v1` and follows [SemVer](http://semver.org/) strictly.

No breaking changes will be made to exported APIs before `v2.0.0`.

## License

[MIT](LICENSE.txt)
Expand Down
10 changes: 4 additions & 6 deletions glide.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion glide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package: go.uber.org/config
import:
- package: gopkg.in/validator.v2
- package: gopkg.in/yaml.v2
- package: github.com/spf13/pflag
- package: github.com/pkg/errors
version: ~0.8.0
testImport:
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@
package config // import "go.uber.org/config"

// Version is the current version of config.
const Version = "1.0.0-rc2"
const Version = "1.0.0"

0 comments on commit 960c208

Please sign in to comment.