-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
146 changed files
with
559 additions
and
518 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[bumpversion] | ||
current_version = 0.2.1 | ||
|
||
[bumpversion:file:crate/capi/examples/meson.build] | ||
[bumpversion:file:crates/capi/examples/meson.build] | ||
|
||
[bumpversion:file:crate/capi/examples/version.cpp] | ||
[bumpversion:file:crates/capi/examples/version.cpp] | ||
|
||
[bumpversion:file:crate/capi/src/lib.rs] | ||
[bumpversion:file:crates/capi/src/lib.rs] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[bumpversion] | ||
current_version = 0.2.6 | ||
current_version = 0.2.7 | ||
|
||
[bumpversion:file:crate/abcrypt/README.md] | ||
[bumpversion:file:crates/abcrypt/README.md] | ||
|
||
[bumpversion:file:crate/abcrypt/src/lib.rs] | ||
[bumpversion:file:crates/abcrypt/src/lib.rs] | ||
|
||
[bumpversion:file:doc/book/modules/lib/pages/usage.adoc] | ||
[bumpversion:file:docs/book/modules/lib/pages/usage.adoc] | ||
|
||
[bumpversion:file:doc/FORMAT.adoc] | ||
[bumpversion:file:docs/FORMAT.adoc] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,11 +58,11 @@ jobs: | |
- name: Setup Rust toolchain | ||
uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: 1.65.0 # MSRV | ||
toolchain: stable | ||
targets: ${{ matrix.target }} | ||
- name: Install cross | ||
if: ${{ matrix.use-cross }} | ||
uses: taiki-e/[email protected].7 | ||
uses: taiki-e/[email protected].21 | ||
with: | ||
tool: cross | ||
- name: Cache build artifacts | ||
|
@@ -118,10 +118,10 @@ jobs: | |
fi | ||
package="abcrypt-${{ steps.extracted_version.outputs.version }}-${{ matrix.target }}" | ||
mkdir -p "${package}"/doc | ||
cp crate/cli/README.md COPYING "${bin}" "${package}" | ||
mkdir -p "${package}"/docs | ||
cp crates/cli/README.md "${bin}" "${package}" | ||
cp -r LICENSES "${package}" | ||
cp crate/cli/{AUTHORS,BUILD,CHANGELOG,CONTRIBUTING}.adoc "${package}"/doc | ||
cp crates/cli/{AUTHORS,BUILD,CHANGELOG,CONTRIBUTING}.adoc "${package}"/docs | ||
if [ "${{ matrix.os }}" != "windows-2022" ] ; then | ||
mkdir -p "${package}"/man | ||
cp "$(find ./target -path '*/abcrypt-cli-*/out' -type d)"/* "${package}"/man | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,9 @@ jobs: | |
- x86_64-unknown-linux-gnu | ||
- x86_64-apple-darwin | ||
- x86_64-pc-windows-msvc | ||
toolchain: | ||
- 1.70.0 # MSRV | ||
- stable | ||
crate: | ||
- abcrypt | ||
- abcrypt-cli | ||
|
@@ -34,9 +37,6 @@ jobs: | |
os: macos-12 | ||
- target: x86_64-pc-windows-msvc | ||
os: windows-2022 | ||
- crate: abcrypt | ||
- crate: abcrypt-cli | ||
- crate: abcrypt-capi | ||
steps: | ||
- name: Set Git to use LF | ||
if: matrix.os == 'windows-2022' | ||
|
@@ -48,7 +48,7 @@ jobs: | |
- name: Setup Rust toolchain | ||
uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: 1.65.0 # MSRV | ||
toolchain: ${{ matrix.toolchain }} | ||
targets: ${{ matrix.target }} | ||
- name: Cache build artifacts | ||
uses: Swatinem/[email protected] | ||
|
@@ -81,6 +81,9 @@ jobs: | |
- x86_64-unknown-linux-gnu | ||
- x86_64-apple-darwin | ||
- x86_64-pc-windows-msvc | ||
toolchain: | ||
- 1.70.0 # MSRV | ||
- stable | ||
include: | ||
- target: x86_64-unknown-linux-gnu | ||
os: ubuntu-22.04 | ||
|
@@ -99,7 +102,7 @@ jobs: | |
- name: Setup Rust toolchain | ||
uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: 1.65.0 # MSRV | ||
toolchain: ${{ matrix.toolchain }} | ||
targets: ${{ matrix.target }} | ||
- name: Cache build artifacts | ||
uses: Swatinem/[email protected] | ||
|
@@ -177,13 +180,18 @@ jobs: | |
capi-examples: | ||
name: Examples for the C API | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
toolchain: | ||
- 1.70.0 # MSRV | ||
- stable | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Setup Rust toolchain | ||
uses: dtolnay/rust-toolchain@v1 | ||
with: | ||
toolchain: 1.65.0 # MSRV | ||
toolchain: ${{ matrix.toolchain }} | ||
- name: Install dependencies | ||
run: | | ||
sudo apt-get update | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.