Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/app/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var (
// and build metadata portions MUST only contain characters from
// semanticAlphabet.
// NOTE: The Version string is overridden on init.
Version = "1.1.0-rc2+release.local"
Version = "1.1.0+release.local"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions client/cmd/bisonw-desktop/electron/pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set -e
cd "$(dirname "$0")"

# For release, remove pre-release info, and set metadata to "release".
VER="1.1.0-rc2" # pre, beta, rc1, etc.
META="release.local" # "release"
VER="1.1.0" # pre, beta, rc1, etc.
META="release"
BISONW_EXE="bisonw"

# Parse flags.
Expand Down
4 changes: 2 additions & 2 deletions client/cmd/bisonw-desktop/electron/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ set -e
cd "$(dirname "$0")"

# For release, remove pre-release info, and set metadata to "release".
VER="1.1.0-rc2" # pre, beta, rc1, etc.
META="release.local" # "release"
VER="1.1.0" # pre, beta, rc1, etc.
META="release"
BISONW_EXE="bisonw"

# Parse flags.
Expand Down
2 changes: 1 addition & 1 deletion client/cmd/bisonw-desktop/linux/pkg-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# set -ex

source linux/common.sh
VER="1.1.0-rc2" # pre, beta, rc1, etc.
VER="1.1.0" # pre, beta, rc1, etc.

# Parse flags.
TAGS=""
Expand Down
8 changes: 4 additions & 4 deletions client/cmd/bisonw-desktop/winres.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,22 @@
"#1": {
"0000": {
"fixed": {
"file_version": "1.1.0.0-rc2",
"product_version": "1.1.0.0-rc2"
"file_version": "1.1.0.0",
"product_version": "1.1.0.0"
},
"info": {
"0409": {
"Comments": "",
"CompanyName": "Decred",
"FileDescription": "Bison Wallet (WebView version)",
"FileVersion": "1.1.0.0-rc2",
"FileVersion": "1.1.0.0",
"InternalName": "bisonw",
"LegalCopyright": "© The Decred Developers. Blue Oak Model License 1.0.0",
"LegalTrademarks": "",
"OriginalFilename": "bisonw-desktop.exe",
"PrivateBuild": "",
"ProductName": "Bison Wallet",
"ProductVersion": "1.1.0.0-rc2",
"ProductVersion": "1.1.0.0",
"SpecialBuild": ""
}
}
Expand Down
8 changes: 4 additions & 4 deletions client/cmd/bisonw/winres.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@
"#1": {
"0000": {
"fixed": {
"file_version": "1.1.0.0-rc2",
"product_version": "1.1.0.0-rc2"
"file_version": "1.1.0.0",
"product_version": "1.1.0.0"
},
"info": {
"0409": {
"Comments": "",
"CompanyName": "Decred",
"FileDescription": "Bison Wallet",
"FileVersion": "1.1.0.0-rc2",
"FileVersion": "1.1.0.0",
"InternalName": "bisonw",
"LegalCopyright": "© The Decred Developers. Blue Oak Model License 1.0.0",
"LegalTrademarks": "",
"OriginalFilename": "bisonw.exe",
"PrivateBuild": "",
"ProductName": "Bison Wallet",
"ProductVersion": "1.1.0.0-rc2",
"ProductVersion": "1.1.0.0",
"SpecialBuild": ""
}
}
Expand Down
2 changes: 1 addition & 1 deletion client/cmd/bwctl/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var (
// and build metadata portions MUST only contain characters from
// semanticAlphabet.
// NOTE: The Version string is overridden on init.
Version = "1.1.0-rc2+release.local"
Version = "1.1.0+release.local"
)

func init() {
Expand Down
4 changes: 2 additions & 2 deletions pkg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
set -e

# For release, remove pre-release info, and set metadata to "release".
VER="1.1.0-rc2" # pre, beta, rc1, etc.
META="release.local" # "release"
VER="1.1.0" # pre, beta, rc1, etc.
META="release"

export CGO_ENABLED=0
export GOWORK=off
Expand Down
2 changes: 1 addition & 1 deletion server/cmd/dcrdex/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var (
// and build metadata portions MUST only contain characters from
// semanticAlphabet.
// NOTE: The Version string is overridden on init.
Version = "1.1.0-rc2+release.local"
Version = "1.1.0+release.local"
)

func init() {
Expand Down
Loading