Skip to content

Commit df23e27

Browse files
committed
chore(contracts): prepare release 0.6.6
1 parent 30f2619 commit df23e27

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9+
## 0.6.6
10+
911
- Update `syn` requirement to `2`.
1012

1113
## 0.6.5

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "contracts"
3-
version = "0.6.5"
3+
version = "0.6.6"
44
description = "Design-by-contract attributes"
55
authors = ["karroffel <[email protected]>"]
66
categories = ["development-tools", "development-tools::procedural-macro-helpers"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<!-- prettier-ignore-start -->
66

77
[![crates.io](https://img.shields.io/crates/v/contracts?label=latest)](https://crates.io/crates/contracts)
8-
[![Documentation](https://docs.rs/contracts/badge.svg?version=0.6.5)](https://docs.rs/contracts/0.6.5)
9-
[![dependency status](https://deps.rs/crate/contracts/0.6.5/status.svg)](https://deps.rs/crate/contracts/0.6.5)
8+
[![Documentation](https://docs.rs/contracts/badge.svg?version=0.6.6)](https://docs.rs/contracts/0.6.6)
9+
[![dependency status](https://deps.rs/crate/contracts/0.6.6/status.svg)](https://deps.rs/crate/contracts/0.6.6)
1010
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/contracts.svg)
1111
<br />
1212
[![CI](https://github.com/x52dev/contracts/actions/workflows/ci.yml/badge.svg)](https://github.com/x52dev/contracts-rs/actions/workflows/ci.yml)

src/implementation/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ impl FuncWithContracts {
180180
match &attr.meta {
181181
syn::Meta::List(list) => list.tokens.clone(),
182182
syn::Meta::Path(path) => path.to_token_stream(),
183-
syn::Meta::NameValue(nv) => dbg!(nv.value.to_token_stream()),
183+
syn::Meta::NameValue(nv) => nv.value.to_token_stream(),
184184
}
185185
}
186186

0 commit comments

Comments
 (0)