Skip to content

Commit

Permalink
chore: release version v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielc committed Apr 30, 2024
1 parent 78b81c5 commit b2f6c83
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,30 @@

All notable changes to this project will be documented in this file.

## [0.2.0] - 2024-04-30

### Bug Fixes

- [Use base64-url 2.0.2 with std feature](https://github.com/ceramicnetwork/rust-dag-jose/commit/abed3a954ab597268e68d1aebb5763e0f954dd5c)

### Features

- [Update to use ipld-core crate](https://github.com/ceramicnetwork/rust-dag-jose/commit/0c66859e9b52ead9c082ab1190b049ff50804c98)

### Miscellaneous Tasks

- [Use explicit root user in release pr workflow](https://github.com/ceramicnetwork/rust-dag-jose/commit/78b81c59047a687c9878e5d95d54a7d1eb16b323)

## [0.1.4] - 2023-12-12

### Bug Fixes

- [Update base64-url dep with std feature](https://github.com/ceramicnetwork/rust-dag-jose/commit/fd9bde871b86f8cf3cbc5b695ed0ce1c82f2d387)

### Miscellaneous Tasks

- [Release version v0.1.4](https://github.com/ceramicnetwork/rust-dag-jose/commit/d5ce14add4546510f28b42d70f1ab5fb53f966d5)

## [0.1.3] - 2023-10-13

### Miscellaneous Tasks
Expand All @@ -26,7 +44,6 @@ All notable changes to this project will be documented in this file.
- [Setup auth for release workflows](https://github.com/ceramicnetwork/rust-dag-jose/commit/153b508e2d75f225db8d82e2342ad3cf559450d0)
- [Fix release script to specify upstream](https://github.com/ceramicnetwork/rust-dag-jose/commit/3a63e09f7235e876a1390f11f92fbfc112d42665)
- [Update release workflow](https://github.com/ceramicnetwork/rust-dag-jose/commit/90f3e042e1212a158b03f84305eaaf897c6809d5)
- [Release v0.1.1](https://github.com/ceramicnetwork/rust-dag-jose/commit/31d4a1ab46ec6d3898d97c0e11d9b322f0f77ba8)

## [0.1.1] - 2023-03-15

Expand All @@ -37,6 +54,7 @@ All notable changes to this project will be documented in this file.

### Miscellaneous Tasks

- [Release v0.1.1](https://github.com/ceramicnetwork/rust-dag-jose/commit/31d4a1ab46ec6d3898d97c0e11d9b322f0f77ba8)
- [Rerun conventional checks on PR edit](https://github.com/ceramicnetwork/rust-dag-jose/commit/5a6fab447d08552bfd2c0325d17148e392a09637)
- [Remove sudo hack, fix was in build image](https://github.com/ceramicnetwork/rust-dag-jose/commit/2f61a55eed45345f37bcc0e7749e33bf748feb55)
- [Fix git user permissions error with release action](https://github.com/ceramicnetwork/rust-dag-jose/commit/0a749a843bc56d028c7df53635264e5d48eb0a0f)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dag-jose"
version = "0.1.4"
version = "0.2.0"
edition = "2021"
authors = ["Nathaniel Cook <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion scripts/release_level.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ level=patch
# Using git cliff determine if there are any feat commits that do not belong to a tag.
git cliff --unreleased --strip all --body "{% for group, commits in commits | group_by(attribute=\"group\") %}
{{ group }} {{ commits | length }}
{% endfor %}" | grep Features
{% endfor %}" | grep Features > /dev/null
ret=$?
if [[ $ret = 0 ]]
then
Expand Down

0 comments on commit b2f6c83

Please sign in to comment.