Skip to content

Commit fd82e30

Browse files
committed
Release abcrypt version 0.2.1
2 parents 1c4dab7 + c801ced commit fd82e30

29 files changed

+188
-311
lines changed

Diff for: .bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.0
2+
current_version = 0.2.1
33

44
[bumpversion:file:crate/abcrypt/README.md]
55

Diff for: .github/workflows/CD.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ jobs:
5454
os: windows-2022
5555
steps:
5656
- name: Checkout code
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858
- name: Setup Rust toolchain
5959
uses: dtolnay/rust-toolchain@v1
6060
with:
61-
toolchain: 1.66.0 # MSRV
61+
toolchain: 1.65.0 # MSRV
6262
targets: ${{ matrix.target }}
6363
- name: Install cross
6464
if: ${{ matrix.use-cross }}
65-
uses: taiki-e/install-action@v2.17.8
65+
uses: taiki-e/install-action@v2.18.0
6666
with:
6767
tool: cross
6868
- name: Cache build artifacts

Diff for: .github/workflows/CI.yaml

+8-10
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,19 @@ jobs:
3434
- target: x86_64-pc-windows-msvc
3535
os: windows-2022
3636
- crate: abcrypt
37-
msrv: 1.65.0
3837
- crate: abcrypt-cli
39-
msrv: 1.66.0
4038
steps:
4139
- name: Set Git to use LF
4240
if: matrix.os == 'windows-2022'
4341
run: |
4442
git config --global core.autocrlf false
4543
git config --global core.eol lf
4644
- name: Checkout code
47-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4846
- name: Setup Rust toolchain
4947
uses: dtolnay/rust-toolchain@v1
5048
with:
51-
toolchain: ${{ matrix.msrv }} # MSRV
49+
toolchain: 1.65.0 # MSRV
5250
targets: ${{ matrix.target }}
5351
- name: Cache build artifacts
5452
uses: Swatinem/[email protected]
@@ -87,11 +85,11 @@ jobs:
8785
git config --global core.autocrlf false
8886
git config --global core.eol lf
8987
- name: Checkout code
90-
uses: actions/checkout@v3
88+
uses: actions/checkout@v4
9189
- name: Setup Rust toolchain
9290
uses: dtolnay/rust-toolchain@v1
9391
with:
94-
toolchain: 1.66.0 # MSRV
92+
toolchain: 1.65.0 # MSRV
9593
targets: ${{ matrix.target }}
9694
- name: Cache build artifacts
9795
uses: Swatinem/[email protected]
@@ -109,7 +107,7 @@ jobs:
109107
runs-on: ubuntu-22.04
110108
steps:
111109
- name: Checkout code
112-
uses: actions/checkout@v3
110+
uses: actions/checkout@v4
113111
- name: Setup Rust toolchain
114112
uses: dtolnay/rust-toolchain@v1
115113
with:
@@ -125,7 +123,7 @@ jobs:
125123
runs-on: ubuntu-22.04
126124
steps:
127125
- name: Checkout code
128-
uses: actions/checkout@v3
126+
uses: actions/checkout@v4
129127
- name: Setup Rust toolchain
130128
uses: dtolnay/rust-toolchain@v1
131129
with:
@@ -145,7 +143,7 @@ jobs:
145143
runs-on: ubuntu-22.04
146144
steps:
147145
- name: Checkout code
148-
uses: actions/checkout@v3
146+
uses: actions/checkout@v4
149147
- name: Setup Rust toolchain
150148
uses: dtolnay/rust-toolchain@v1
151149
with:
@@ -160,7 +158,7 @@ jobs:
160158
runs-on: ubuntu-22.04
161159
steps:
162160
- name: Checkout code
163-
uses: actions/checkout@v3
161+
uses: actions/checkout@v4
164162
- name: Setup Rust toolchain
165163
uses: dtolnay/rust-toolchain@v1
166164
with:

Diff for: .github/workflows/REUSE.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: REUSE Compliance Check
2222
uses: fsfe/[email protected]

Diff for: CONTRIBUTING.adoc

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
// SPDX-License-Identifier: Apache-2.0 OR MIT
44

55
= Contribution Guide
6-
:git-flow-url: https://nvie.com/posts/a-successful-git-branching-model/
7-
:commit-messages-guide-url: https://github.com/RomuloOliveira/commit-messages-guide
6+
:git-flow: https://nvie.com/posts/a-successful-git-branching-model/[git-flow]
7+
:commit-messages-guide: https://github.com/RomuloOliveira/commit-messages-guide[Commit messages guide]
8+
:just: https://github.com/casey/just[just]
89

910
== Branching model
1011

11-
The branching model of this project is based on the {git-flow-url}[git-flow].
12+
The branching model of this project is based on the {git-flow}.
1213

1314
== Style guides
1415

1516
=== Commit message
1617

17-
Please see the {commit-messages-guide-url}[Commit messages guide].
18+
Please see the {commit-messages-guide}.
1819

1920
== Development
2021

2122
=== Useful development tools
2223

23-
The https://github.com/casey/just[just] command runner can be used. Run
24-
`just --list` for more details.
24+
The {just} command runner can be used. Run `just --list` for more details.
2525

2626
.Run tests
2727
[source,shell]

0 commit comments

Comments
 (0)