Skip to content

Commit

Permalink
Remove v prefix from versions (#2641)
Browse files Browse the repository at this point in the history
Like it is done in neo-go. Closes #2640.
  • Loading branch information
roman-khimov authored Nov 13, 2023
2 parents 346a779 + 5f3e407 commit 59a8198
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Changelog for NeoFS Node
- Contract group wallet support from `neofs-adm` (#2619)
- `neofs-cli util locode generate`and `neofs-cli util locode info` commands (#2610)
- Locode DB configuration options (#2610)
- `v` prefix in version (#2640)

### Updated
- Update minimal supported Go version up to v1.19 (#2485)
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
SHELL = bash

REPO ?= $(shell go list -m)
VERSION ?= $(shell git describe --tags --dirty --match "v*" --always --abbrev=8 2>/dev/null || cat VERSION 2>/dev/null || echo "develop")
VERSION ?= $(shell set -o pipefail; git describe --tags --dirty --match "v*" --always --abbrev=8 2>/dev/null | sed 's/^v//' || cat VERSION 2>/dev/null || echo "develop")

HUB_IMAGE ?= nspccdev/neofs
HUB_TAG ?= "$(shell echo ${VERSION} | sed 's/^v//')"
HUB_TAG ?= $(VERSION)

GO_VERSION ?= 1.21
LINT_VERSION ?= 1.55.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.38.1
0.38.1

0 comments on commit 59a8198

Please sign in to comment.