Skip to content

Commit

Permalink
Update version to 1.0.7-hotfix1
Browse files Browse the repository at this point in the history
  • Loading branch information
studyzy committed May 1, 2020
1 parent ee5908b commit e74bc1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 20 deletions.
25 changes: 5 additions & 20 deletions configure/version.go
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
// Copyright 2018 PalletOne
// Copyright 2016 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// Copyright 2018-2020 PalletOne
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package configure

Expand All @@ -22,11 +8,10 @@ import (
)

const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 7 // Patch version component of the current release
VersionMeta = "release" // Version metadata to append to the version string

VersionMajor = 1 // Major version component of the current release
VersionMinor = 0 // Minor version component of the current release
VersionPatch = 7 // Patch version component of the current release
VersionMeta = "hotfix1" // Version metadata to append to the version string
)

// Version holds the textual version string.
Expand Down
1 change: 1 addition & 0 deletions dag/migration/versions.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ func NewMigrations(db ptndb.Database) map[string]IMigration {
migrations["1.0.6-alpha"] = NewNothingMigration("1.0.6-alpha", "1.0.6-beta")
migrations["1.0.6-beta"] = NewNothingMigration("1.0.6-beta", "1.0.7-beta")
migrations["1.0.7-beta"] = NewNothingMigration("1.0.7-beta", "1.0.7-release")
migrations["1.0.7-release"] = NewNothingMigration("1.0.7-release", "1.0.7-hotfix1")
return migrations
}

Expand Down

0 comments on commit e74bc1b

Please sign in to comment.