Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: bump 0.5.2 #48

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: publish

on:
push:
tags:
- '*'
tags:
- '*'

jobs:
publish-crypto:
Expand Down Expand Up @@ -42,4 +42,4 @@ jobs:
- name: publish (encoding)
run: cargo publish -p tezos_data_encoding --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Added

- Added `bls` feature flag to allow disabling dependency on `blst`
- Nothing.

### Changed

Expand All @@ -33,6 +33,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

- Nothing.

## [0.5.2] - 2023-11-21

### Added

- Added `bls` feature flag to `tezos_crypto_rs`, to allow disabling dependency on `blst`.

## [0.5.1] - 2023-09-01

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_crypto_rs"
version = "0.5.1"
version = "0.5.2"
authors = ["TriliTech <contact@trili.tech>"]
edition = "2021"
rust-version = "1.60"
Expand Down
2 changes: 1 addition & 1 deletion tezos-encoding-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_data_encoding_derive"
version = "0.5.1"
version = "0.5.2"
authors = ["TriliTech <contact@trili.tech>"]
edition = "2021"
rust-version = "1.60"
Expand Down
6 changes: 3 additions & 3 deletions tezos-encoding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tezos_data_encoding"
version = "0.5.1"
version = "0.5.2"
authors = ["TriliTech <contact@trili.tech>"]
edition = "2021"
rust-version = "1.60"
Expand All @@ -23,12 +23,12 @@ lazy_static = "1.4"

[dependencies.tezos_crypto_rs]
path = "../crypto"
version = "0.5.1"
version = "0.5.2"
default-features = false

[dependencies.tezos_data_encoding_derive]
path = "../tezos-encoding-derive"
version = "0.5.1"
version = "0.5.2"

[dev-dependencies]
serde_json = "1.0"
Expand Down