Skip to content

Commit 9b757a0

Browse files
committed
version bump 0.9.5
1 parent 7c3cef5 commit 9b757a0

8 files changed

+17
-17
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/anweiss/cddl"
55
homepage = "https://cddl.anweiss.tech"
66
categories = ["parser-implementations", "encoding", "development-tools", "wasm"]
77
license = "MIT"
8-
version = "0.9.4"
8+
version = "0.9.5"
99
authors = ["Andrew Weiss <[email protected]>"]
1010
readme = "README.md"
1111
edition = "2018"

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cddl-rs
22

3-
[![crates.io](https://img.shields.io/crates/v/cddl.svg)](https://crates.io/crates/cddl) [![docs.rs](https://docs.rs/cddl/badge.svg)](https://docs.rs/cddl) [![Publish packages](https://github.com/anweiss/cddl/workflows/Publish%20packages/badge.svg?branch=0.9.4&event=release)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Publish+packages%22) [![Build and Test](https://github.com/anweiss/cddl/workflows/Build%20and%20Test/badge.svg)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Build+and+Test%22) [![Active Development](https://img.shields.io/badge/Maintenance%20Level-Actively%20Developed-brightgreen.svg)](https://gist.github.com/cheerfulstoic/d107229326a01ff0f333a1d3476e068d)
3+
[![crates.io](https://img.shields.io/crates/v/cddl.svg)](https://crates.io/crates/cddl) [![docs.rs](https://docs.rs/cddl/badge.svg)](https://docs.rs/cddl) [![Publish packages](https://github.com/anweiss/cddl/workflows/Publish%20packages/badge.svg?branch=0.9.5&event=release)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Publish+packages%22) [![Build and Test](https://github.com/anweiss/cddl/workflows/Build%20and%20Test/badge.svg)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Build+and+Test%22) [![Active Development](https://img.shields.io/badge/Maintenance%20Level-Actively%20Developed-brightgreen.svg)](https://gist.github.com/cheerfulstoic/d107229326a01ff0f333a1d3476e068d)
44

55
> This crate was originally developed as a personal learning exercise for getting acquainted with Rust and parsing in general. There are likely more performant and stable libraries out there for parsing CDDL. While there are some examples of this crate being used in production, careful consideration should be made prior to using this crate as such.
66
@@ -88,7 +88,7 @@ cat reputon.cbor | cddl validate --cddl reputon.cddl --stdin
8888
or using Docker:
8989

9090
```sh
91-
docker run -i --rm -v $PWD:/data -w /data ghcr.io/anweiss/cddl-cli:0.9.4 validate --cddl reputon.cddl --stdin < reputon.json
91+
docker run -i --rm -v $PWD:/data -w /data ghcr.io/anweiss/cddl-cli:0.9.5 validate --cddl reputon.cddl --stdin < reputon.json
9292
```
9393

9494
## Website
@@ -133,7 +133,7 @@ Simply add the dependency to `Cargo.toml`:
133133

134134
```toml
135135
[dependencies]
136-
cddl = "0.9.4"
136+
cddl = "0.9.5"
137137
```
138138

139139
Both JSON and CBOR validation require `std`.
@@ -385,7 +385,7 @@ Only the lexer and parser can be used in a `no_std` context provided that a heap
385385

386386
```toml
387387
[dependencies]
388-
cddl = { version = "0.9.4", default-features = false }
388+
cddl = { version = "0.9.5", default-features = false }
389389
```
390390

391391
Zero-copy parsing is implemented to the extent that is possible. Allocation is required for error handling and diagnostics.

cddl-lsp/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
packages.default = pkgs.rustPlatform.buildRustPackage {
3737
inherit nativeBuildInputs buildInputs;
3838
pname = "cddl";
39-
version = "0.9.4";
39+
version = "0.9.5";
4040

4141
src = ./.;
4242

src/lib.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! [![crates.io](https://img.shields.io/crates/v/cddl.svg)](https://crates.io/crates/cddl)
44
//! [![docs.rs](https://docs.rs/cddl/badge.svg)](https://docs.rs/cddl)
55
//! [![Publish
6-
//! packages](https://github.com/anweiss/cddl/workflows/Publish%20packages/badge.svg?branch=0.9.4&event=release)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Publish+packages%22)
6+
//! packages](https://github.com/anweiss/cddl/workflows/Publish%20packages/badge.svg?branch=0.9.5&event=release)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Publish+packages%22)
77
//! [![Build and
88
//! Test](https://github.com/anweiss/cddl/workflows/Build%20and%20Test/badge.svg)](https://github.com/anweiss/cddl/actions?query=workflow%3A%22Build+and+Test%22)
99
//! [![Active
@@ -130,7 +130,7 @@
130130
//! or using Docker:
131131
//!
132132
//! ```sh
133-
//! docker run -i --rm -v $PWD:/data -w /data ghcr.io/anweiss/cddl-cli:0.9.4 validate --cddl reputon.cddl --stdin < reputon.json
133+
//! docker run -i --rm -v $PWD:/data -w /data ghcr.io/anweiss/cddl-cli:0.9.5 validate --cddl reputon.cddl --stdin < reputon.json
134134
//! ```
135135
//!
136136
//! ## Website
@@ -180,7 +180,7 @@
180180
//!
181181
//! ```toml
182182
//! [dependencies]
183-
//! cddl = "0.9.4"
183+
//! cddl = "0.9.5"
184184
//! ```
185185
//!
186186
//! Both JSON and CBOR validation require `std`.
@@ -502,7 +502,7 @@
502502
//!
503503
//! ```toml
504504
//! [dependencies]
505-
//! cddl = { version = "0.9.4", default-features = false }
505+
//! cddl = { version = "0.9.5", default-features = false }
506506
//! ```
507507
//!
508508
//! Zero-copy parsing is implemented to the extent that is possible. Allocation

www/package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

www/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cddl",
3-
"version": "0.9.4",
3+
"version": "0.9.5",
44
"description": "Parser for the Concise data definition language (CDDL)",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)