Skip to content

Commit

Permalink
increased version number
Browse files Browse the repository at this point in the history
  • Loading branch information
r4gus committed Jan 20, 2024
1 parent 86d070a commit ca78df6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
cff-version: 1.2.0
title: zbor
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: David Pierre
family-names: Sugar
orcid: "https://orcid.org/0009-0007-0056-602X"
repository-code: 'https://github.com/r4gus/zbor'
abstract: 'CBOR parser written in Zig'
version: 0.12.3
date-released: 2024-01-20
keywords:
- cbor
- rfc8949
- zig
license: MIT
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.{
.name = "zbor",
.version = "0.12.2",
.version = "0.12.3",
}
2 changes: 1 addition & 1 deletion src/main.zig
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub const Builder = build.Builder;
pub const ContainerType = build.ContainerType;

// TODO: can we somehow read this from build.zig.zon???
pub const VERSION: []const u8 = "0.11.2";
pub const VERSION: []const u8 = "0.12.3";

test {
_ = cbor;
Expand Down

0 comments on commit ca78df6

Please sign in to comment.