File tree Expand file tree Collapse file tree 3 files changed +37
-18
lines changed Expand file tree Collapse file tree 3 files changed +37
-18
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5
+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
+
7
+ ## [ Unreleased]
8
+ ### Added
9
+
10
+ ### Changed
11
+
12
+ ### Removed
13
+
14
+ ## [ 0.1.0] - 2020-02-04
15
+ ### Added
16
+ - First "real" release.
17
+
18
+ [ Unreleased ] : https://github.com/jonhoo/inferno/compare/v0.1.0...HEAD
19
+ [ 0.1.0 ] : https://github.com/jonhoo/inferno/compare/6cda7c8e7501b9b7453e7a2db269a994a99c0660...v0.1.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " flurry"
3
- version = " 0.0.2 "
3
+ version = " 0.1.0 "
4
4
edition = " 2018"
5
5
authors = [" Jon Gjengset <jon@thesquareplanet.com>" ]
6
6
license = " MIT OR Apache-2.0"
@@ -23,7 +23,7 @@ maintenance = { status = "experimental" }
23
23
sanitize = [' crossbeam-epoch/sanitize' ]
24
24
25
25
[dependencies ]
26
- crossbeam-epoch = " 0.9 "
26
+ crossbeam-epoch = " 0.8 "
27
27
parking_lot = " 0.10"
28
28
num_cpus = " 1.12.0"
29
29
@@ -44,5 +44,5 @@ harness = false
44
44
name = " flurry_hashbrown"
45
45
harness = false
46
46
47
- [patch .crates-io ]
48
- crossbeam-epoch = { git = " https://github.com/cynecx/crossbeam.git" , branch = " fix-unsoundness" }
47
+ # [patch.crates-io]
48
+ # crossbeam-epoch = { git = "https://github.com/cynecx/crossbeam.git", branch = "fix-unsoundness" }
Original file line number Diff line number Diff line change @@ -42,20 +42,20 @@ jobs:
42
42
- clippy
43
43
- bash : cargo clippy --all-features -- -D warnings
44
44
displayName : cargo clippy -- -D warnings
45
- - job : miri
46
- displayName : " Run miri on test suite"
47
- dependsOn : deny
48
- pool :
49
- vmImage : ubuntu-16.04
50
- steps :
51
- - template : install-rust.yml@templates
52
- parameters :
53
- rust : nightly
54
- components :
55
- - miri
56
- # ignore leaks due to https://github.com/crossbeam-rs/crossbeam/issues/464
57
- - bash : yes | cargo miri -Zmiri-ignore-leaks test
58
- displayName : cargo miri test
45
+ # - job: miri
46
+ # displayName: "Run miri on test suite"
47
+ # dependsOn: deny
48
+ # pool:
49
+ # vmImage: ubuntu-16.04
50
+ # steps:
51
+ # - template: install-rust.yml@templates
52
+ # parameters:
53
+ # rust: nightly
54
+ # components:
55
+ # - miri
56
+ # # ignore leaks due to https://github.com/crossbeam-rs/crossbeam/issues/464
57
+ # - bash: yes | cargo miri -Zmiri-ignore-leaks test
58
+ # displayName: cargo miri test
59
59
- job : asan
60
60
dependsOn : deny
61
61
displayName : " Run address sanitizer on test suite"
You can’t perform that action at this time.
0 commit comments