Skip to content

Commit 2b2d98d

Browse files
committed
Reverting back to 2018 instead (#80)
1 parent 93d2e0d commit 2b2d98d

File tree

3 files changed

+18
-13
lines changed

3 files changed

+18
-13
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "shared_memory"
33
description = "A user friendly crate that allows you to share memory between processes"
4-
version = "0.13.0"
4+
version = "0.12.2"
55
authors = ["ElasT0ny <elast0ny00@gmail.com>"]
66
license = "MIT OR Apache-2.0"
7-
edition = "2021"
7+
edition = "2018"
88

99
#Extra fields for crates.io
1010
readme = "README.md"

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,3 @@ For usage examples, see code located in [examples/](examples/) :
3131
Unless you explicitly state otherwise, any contribution intentionally submitted
3232
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
3333
dual licensed as above, without any additional terms or conditions.
34-
35-
36-
## Changelog
37-
38-
### __0.12.X__
39-
- Windows implementation now follows POSIX behavior in regards to ownership and deletion, see [#59](https://github.com/elast0ny/shared_memory-rs/pull/59) for more details
40-
- Default features disable logging on release builds
41-
### __0.11.X__
42-
This release breaks backwards compatibility and removes a bunch of previous features which hid many unsafe behaviors (automatically casting shared memory to Rust types).
43-
44-
The release also marks the split between `shared_memory` and its synchronization primitives into a seperate crate `raw_sync`.

changelog.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
# 0.12.2
4+
- Default feature behavior is to disable logging on release builds
5+
- Reverted edition bump back to 2018
6+
- Updated to use Microsoft's `windows-rs` crate
7+
8+
# ~~0.12.1 (yanked)~~
9+
- ~~Updated to latest edition (2021)~~
10+
11+
# 0.12.0
12+
- Windows implementation now follows POSIX behavior in regards to ownership and deletion, see [#59](https://github.com/elast0ny/shared_memory-rs/pull/59) for more details
13+
# __0.11.X__
14+
This release breaks backwards compatibility and removes a bunch of previous features which hid many unsafe behaviors (automatically casting shared memory to Rust types).
15+
16+
The release also marks the split between `shared_memory` and its synchronization primitives into a seperate crate `raw_sync`.

0 commit comments

Comments
 (0)