oid: Release 0.2.0

This commit is contained in:
Fintan Halpenny 2026-05-06 10:13:05 +01:00
parent 4ca2098cb7
commit 2871417808
4 changed files with 25 additions and 3 deletions

2
Cargo.lock generated
View File

@ -3245,7 +3245,7 @@ dependencies = [
[[package]] [[package]]
name = "radicle-oid" name = "radicle-oid"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"git2", "git2",
"gix-hash", "gix-hash",

View File

@ -58,7 +58,7 @@ radicle-git-metadata = { version = "0.2.0", path = "crates/radicle-git-metadata"
radicle-git-ref-format = { version = "0.1.0", path = "crates/radicle-git-ref-format", default-features = false } radicle-git-ref-format = { version = "0.1.0", path = "crates/radicle-git-ref-format", default-features = false }
radicle-localtime = { version = "0.1", path = "crates/radicle-localtime" } radicle-localtime = { version = "0.1", path = "crates/radicle-localtime" }
radicle-node = { version = "0.19", path = "crates/radicle-node" } radicle-node = { version = "0.19", path = "crates/radicle-node" }
radicle-oid = { version = "0.1.0", path = "crates/radicle-oid", default-features = false } radicle-oid = { version = "0.2.0", path = "crates/radicle-oid", default-features = false }
radicle-protocol = { version = "0.7", path = "crates/radicle-protocol" } radicle-protocol = { version = "0.7", path = "crates/radicle-protocol" }
radicle-signals = { version = "0.11", path = "crates/radicle-signals" } radicle-signals = { version = "0.11", path = "crates/radicle-signals" }
radicle-systemd = { version = "0.12", path = "crates/radicle-systemd" } radicle-systemd = { version = "0.12", path = "crates/radicle-systemd" }

View File

@ -0,0 +1,22 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
### Changed
### Removed
### Security
## 0.2.0
### Removed
- `Oid::sha1_zero` is removed in favor of `pub const ZERO_SHA1`.

View File

@ -3,7 +3,7 @@ name = "radicle-oid"
description = "Radicle representation of Git object identifiers" description = "Radicle representation of Git object identifiers"
homepage.workspace = true homepage.workspace = true
repository.workspace = true repository.workspace = true
version = "0.1.0" version = "0.2.0"
edition.workspace = true edition.workspace = true
license.workspace = true license.workspace = true
keywords = ["radicle", "git", "oid"] keywords = ["radicle", "git", "oid"]