Skip to content

Commit

Permalink
release: update changelog, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Sep 20, 2023
1 parent f669043 commit 18d6e98
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ 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/).

## [23.09/1.4.0] - 2023-09-20
### Changed
- Updated Bitcoin Cash client to 26.0.0 -> 26.1.0

## [23.06/1.3.0] - 2023-06-12

## [23.03/1.3.0] - 2023-03-29
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
RELEASE := 'v23.06'
RELEASESEM := 'v1.3.0'
RELEASE := 'v23.09'
RELEASESEM := 'v1.4.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 $(RELEASE) -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)
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)


Expand Down
2 changes: 1 addition & 1 deletion docker/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
install:
git clone --depth=1 -b v26.0.0 https://gitlab.com/bitcoin-cash-node/bitcoin-cash-node src && \
git clone --depth=1 -b v26.1.0 https://gitlab.com/bitcoin-cash-node/bitcoin-cash-node src && \
mkdir -p src/build && \
cd src/build && \
cmake -GNinja -DENABLE_UPNP=OFF -DBUILD_BITCOIN_WALLET=OFF -DBUILD_BITCOIN_ZMQ=OFF -DBUILD_BITCOIN_QT=OFF .. && \
Expand Down

0 comments on commit 18d6e98

Please sign in to comment.