Skip to content

Commit

Permalink
chore(release): Release abcrypt version 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Jul 31, 2024
2 parents 8653d9f + f80270c commit df9fc52
Show file tree
Hide file tree
Showing 41 changed files with 373 additions and 332 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-lib.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[tool.bumpversion]
current_version = "0.3.5"
current_version = "0.3.6"

[[tool.bumpversion.files]]
filename = "crates/abcrypt/README.md"
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
name: CD

on:
pull_request:
push:
branches:
- "develop"
tags:
- "abcrypt-cli-v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: write
Expand Down Expand Up @@ -78,7 +76,7 @@ jobs:
targets: ${{ matrix.target }}
- name: Install cross
if: ${{ matrix.use-cross }}
uses: taiki-e/install-action@v2.41.7
uses: taiki-e/install-action@v2.42.12
with:
tool: cross
- name: Cache build artifacts
Expand Down Expand Up @@ -149,7 +147,7 @@ jobs:
sha256sum abcrypt-* | tee sha256sums.txt
b2sum abcrypt-* | tee b2sums.txt
- name: Release
uses: softprops/[email protected].6
uses: softprops/[email protected].8
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ jobs:
with:
toolchain: stable
- name: Setup Deno
uses: denoland/setup-deno@v1.1.4
uses: denoland/setup-deno@1.3.0
with:
deno-version: v1.x
- name: Install wasm-pack
Expand All @@ -295,14 +295,3 @@ jobs:
run: |
wasm-pack build -t deno crates/wasm
deno check crates/wasm/examples/*.ts
semver:
name: Semantic Versioning
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check Semantic Versioning
uses: obi1kenobi/[email protected]
with:
package: abcrypt
24 changes: 24 additions & 0 deletions .github/workflows/SemverChecks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# SPDX-FileCopyrightText: 2022 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT

name: Check Semantic Versioning

on:
push:
branches:
- "release/abcrypt-*"
tags:
- "abcrypt-v[0-9]+.[0-9]+.[0-9]+"

jobs:
semver:
name: Check Semantic Versioning
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Check Semantic Versioning
uses: obi1kenobi/[email protected]
with:
package: abcrypt
4 changes: 1 addition & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,10 @@
name: Deployment

on:
pull_request:
push:
branches:
- "develop"
tags:
- "*-v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:

permissions:
contents: write
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/release_python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
name: Release Python

on:
pull_request:
push:
branches:
- "develop"
tags:
- "abcrypt-py-v[0-9]+.[0-9]+.[0-9]+"
workflow_dispatch:
Expand Down
9 changes: 7 additions & 2 deletions CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
= Contribution Guide
:git-flow-url: https://nvie.com/posts/a-successful-git-branching-model/
:commit-messages-guide-url: https://github.com/RomuloOliveira/commit-messages-guide
:conventionalcommits-url: https://www.conventionalcommits.org/en/v1.0.0/
ifdef::site-gen-antora[]
:coc-url: https://www.contributor-covenant.org/version/2/1/code_of_conduct/
endif::[]

Thank you for your interest in contributing to this project! If you would like
to contribute to this project, please follow the instructions below if possible.

== Branching model

The branching model of this project is based on the {git-flow-url}[git-flow].
Expand All @@ -17,7 +21,8 @@ The branching model of this project is based on the {git-flow-url}[git-flow].

=== Commit message

Please see the {commit-messages-guide-url}[Commit messages guide].
Please see the {commit-messages-guide-url}[Commit messages guide] and the
{conventionalcommits-url}[Conventional Commits].

== Submitting a pull request

Expand All @@ -26,7 +31,7 @@ Please see the {commit-messages-guide-url}[Commit messages guide].
. Create your patch. If your change is a feature or a bugfix, please add a test
case if possible. Note that the change must pass the CI.
. Please update the copyright information if possible. This project is
compliant with version 3.0 of the
compliant with version 3.2 of the
https://reuse.software/spec/[_REUSE Specification_].
https://github.com/fsfe/reuse-tool[`reuse`] is useful for updating the
copyright information.
Expand Down
Loading

0 comments on commit df9fc52

Please sign in to comment.