Skip to content

Commit

Permalink
Set release version to 1.0.3-release
Browse files Browse the repository at this point in the history
  • Loading branch information
studyzy committed Oct 14, 2019
1 parent c1c229b commit 0021ed9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 3 // Patch version component of the current release
VersionMeta = "gamma" // Version metadata to append to the version string
VersionMeta = "release" // Version metadata to append to the version string

)

Expand Down
3 changes: 2 additions & 1 deletion dag/migration/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ func NewMigrations(db ptndb.Database) map[string]IMigration {

m_103_gamma := NewMigration103beta_103gamma(db)
migrations[m_103_gamma.FromVersion()] = m_103_gamma

m_103_gamma_release := NewNothingMigration("1.0.3-gamma", "1.0.3-release")
migrations[m_103_gamma_release.FromVersion()] = m_103_gamma_release
return migrations
}

Expand Down

0 comments on commit 0021ed9

Please sign in to comment.