Skip to content

Commit

Permalink
Bump to v0.10.0
Browse files Browse the repository at this point in the history
* Update CHANGELOG and README
* Update strsim to 0.9.0
* Rename path_list to match exported type
  • Loading branch information
TedDriggs committed Aug 15, 2019
1 parent b16d131 commit 897d179
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.10.0 (August 15, 2019)
- Bump syn and quote to 1.0 [#79](https://github.com/TedDriggs/darling/pull/79)
- Increase rust version to 1.31

## v0.9.0 (March 20, 2019)
- Enable "did you mean" suggestions by default
- Make `darling_core::{codegen, options}` private [#58](https://github.com/TedDriggs/darling/issues/58)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Darling

[![Build Status](https://travis-ci.org/TedDriggs/darling.svg?branch=master)](https://travis-ci.org/TedDriggs/darling)
[![Latest Version](https://img.shields.io/crates/v/darling.svg)](https://crates.io/crates/darling)
[![Rustc Version 1.18+](https://img.shields.io/badge/rustc-1.18+-lightgray.svg)](https://blog.rust-lang.org/2017/06/08/Rust-1.18.html)
[![Rustc Version 1.31+](https://img.shields.io/badge/rustc-1.31+-lightgray.svg)](https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html)

`darling` is a crate for proc macro authors, which enables parsing attributes into structs. It is heavily inspired by `serde` both in its internals and in its API.

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ proc-macro2 = "1"
quote = "1"
syn = { version = "1", features = ["full", "extra-traits"] }
fnv = "1.0.6"
strsim = { version = "0.7.0", optional = true }
strsim = { version = "0.9.0", optional = true }
4 changes: 2 additions & 2 deletions core/src/util/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ use std::ops::{BitAnd, BitOr, Deref, Not};
use syn;
use {FromMeta, Result};

mod ident_list;
mod ident_string;
mod ignored;
mod over_ride;
mod path_list;
mod with_original;
mod spanned_value;

pub use self::ident_list::PathList;
pub use self::ident_string::IdentString;
pub use self::ignored::Ignored;
pub use self::over_ride::Override;
pub use self::path_list::PathList;
pub use self::spanned_value::SpannedValue;
pub use self::with_original::WithOriginal;

Expand Down
File renamed without changes.

0 comments on commit 897d179

Please sign in to comment.