Skip to content

Commit

Permalink
retired semantic versions
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Jan 5, 2024
1 parent 3190f1b commit c2c7545
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [24.01.dev1] - 2024-01-05
- retired semantic versions, new versions are based on vYEAR.MONTH.VERSION

## [24.01/1.3.0] - 2024-01-05
### Changed
- BREAKING: change mount paths to /home/dockeruser/output-directory -> /opt/graphsense/data, /home/dockeruser/main_net_config.conf -> /opt/graphsense/client.conf
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
RELEASE := 'v24.01.0'
RELEASESEM := 'v1.3.0'
RELEASE := 'v24.01.dev1'
# RELEASESEM := 'v1.3.0'

all: build

Expand All @@ -10,7 +10,7 @@ run:
docker-compose up -d

tag-version:
-git diff --exit-code && git diff --staged --exit-code && git tag -a $(RELEASESEM) -m 'Release $(RELEASE)' || (echo "Repo is dirty please commit first" && exit 1)
# -git diff --exit-code && git diff --staged --exit-code && git tag -a $(RELEASESEM) -m 'Release $(RELEASE)' || (echo "Repo is dirty please commit first" && exit 1)
git diff --exit-code && git diff --staged --exit-code && git tag -a $(RELEASE) -m 'Release $(RELEASE)' || (echo "Repo is dirty please commit first" && exit 1)

.PHONY: all build run tag-version

0 comments on commit c2c7545

Please sign in to comment.