Skip to content

Commit

Permalink
Bump version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafaturan committed Oct 31, 2020
1 parent 1e6d01f commit 05386f4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ this `README.md` file.

## API

Although no significant change should be expected on design and features, the
method names and arities/args may subject to change until version `1.0.0`.
Shift package follows [semantic versioning 2.x rules](https://semver.org/) on
releases and tags. To access to the current package version, `shift.Version`
constant can be used.
Expand Down
2 changes: 1 addition & 1 deletion shift.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (

const (
// Version matches with the current version of the package
Version = "1.0.0-beta"
Version = "1.0.0"
)

// Shift is an optioned circuit breaker implementation
Expand Down
2 changes: 1 addition & 1 deletion shift_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const (
)

func TestVersion(t *testing.T) {
assert.Equal(t, Version, "1.0.0-beta")
assert.Equal(t, Version, "1.0.0")
}

func TestNew(t *testing.T) {
Expand Down

0 comments on commit 05386f4

Please sign in to comment.