Skip to content

Commit a960d4d

Browse files
committed
fix smallvec for nightly
1 parent adfb46e commit a960d4d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
<!-- ## [Unreleased] -->
7+
## [Unreleased]
8+
### Fixed
9+
- bumped `smallvec` version to `1.5` to avoid nightly feature compilation issues.
810

911
## [0.7.0] - 2023-05-14
1012
- Increased documentation and test coverage.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ include = ["src/**/*", "LICENSE-*", "README.md", "CHANGELOG.md"]
1515
[dependencies]
1616
proc-macro2 = { version = "1", optional = true }
1717
quote = { version = "1", optional = true }
18-
smallvec = { version = "1.4", optional = true, features = ["const_generics"] }
18+
smallvec = { version = "1.5", optional = true, features = ["const_generics"] }
1919

2020
[features]
2121
default = ["proc-macro2", "proc-macro", "parser", "quote"]

0 commit comments

Comments
 (0)