Skip to content

Commit 53dcd44

Browse files
committed
chore(release): Release abcrypt version 0.4.0
2 parents 89f3763 + eeb1695 commit 53dcd44

File tree

166 files changed

+5512
-1210
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+5512
-1210
lines changed

.bumpversion-capi.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ filename = "crates/capi/examples/version.hpp"
1313

1414
[[tool.bumpversion.files]]
1515
filename = "crates/capi/src/lib.rs"
16+
17+
[[tool.bumpversion.files]]
18+
glob = "docs/man/man3/*.3.adoc"

.bumpversion-cli.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# SPDX-FileCopyrightText: 2024 Shun Sakai
2+
#
3+
# SPDX-License-Identifier: GPL-3.0-or-later
4+
5+
[tool.bumpversion]
6+
current_version = "0.3.3"
7+
8+
[[tool.bumpversion.files]]
9+
glob = "docs/man/man1/*.1.adoc"
10+
11+
[[tool.bumpversion.files]]
12+
filename = "docs/man/man5/abcrypt.5.adoc"

.bumpversion-lib.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0 OR MIT
44

55
[tool.bumpversion]
6-
current_version = "0.3.7"
6+
current_version = "0.4.0"
77

88
[[tool.bumpversion.files]]
99
filename = "crates/abcrypt/README.md"

.github/workflows/CD.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ env:
2020
jobs:
2121
get-version:
2222
name: Get version
23-
runs-on: ubuntu-22.04
23+
runs-on: ubuntu-24.04
2424
outputs:
2525
version: ${{ steps.get_version.outputs.version }}
2626
version_without_v: ${{ steps.get_version_without_v.outputs.version-without-v }}
@@ -53,10 +53,10 @@ jobs:
5353
- x86_64-pc-windows-msvc
5454
include:
5555
- target: aarch64-unknown-linux-musl
56-
os: ubuntu-22.04
56+
os: ubuntu-24.04
5757
use-cross: true
5858
- target: x86_64-unknown-linux-musl
59-
os: ubuntu-22.04
59+
os: ubuntu-24.04
6060
use-cross: true
6161
- target: aarch64-apple-darwin
6262
os: macos-14
@@ -76,18 +76,18 @@ jobs:
7676
targets: ${{ matrix.target }}
7777
- name: Install cross
7878
if: ${{ matrix.use-cross }}
79-
uses: taiki-e/install-action@v2.44.35
79+
uses: taiki-e/install-action@v2.47.7
8080
with:
8181
tool: cross
8282
- name: Cache build artifacts
83-
uses: Swatinem/[email protected].5
83+
uses: Swatinem/[email protected].7
8484
with:
8585
key: ${{ matrix.target }}
8686
- name: Setup Ruby
8787
if: matrix.os != 'windows-2022' && !matrix.use-cross
8888
uses: ruby/setup-ruby@v1
8989
with:
90-
ruby-version: 3.2
90+
ruby-version: 3.3
9191
- name: Install Asciidoctor
9292
if: matrix.os != 'windows-2022' && !matrix.use-cross
9393
run: |
@@ -136,7 +136,7 @@ jobs:
136136
needs:
137137
- get-version
138138
- build
139-
runs-on: ubuntu-22.04
139+
runs-on: ubuntu-24.04
140140
steps:
141141
- name: Download artifact
142142
uses: actions/download-artifact@v4
@@ -147,7 +147,7 @@ jobs:
147147
sha256sum abcrypt-* | tee sha256sums.txt
148148
b2sum abcrypt-* | tee b2sums.txt
149149
- name: Release
150-
uses: softprops/action-gh-release@v2.0.8
150+
uses: softprops/action-gh-release@v2.1.0
151151
if: startsWith(github.ref, 'refs/tags/')
152152
with:
153153
draft: true

0 commit comments

Comments
 (0)