Skip to content

Commit f17a6c7

Browse files
committed
v0.9.0 Ruby 2 release
1 parent 3568b33 commit f17a6c7

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.DS_Store

8 KB
Binary file not shown.

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,18 @@ API and may have breaking changes during a teeny version change.
88

99

1010
## [Unreleased]
11+
12+
## [0.9.0] - 2023-12-17
13+
### Added
14+
- Support for trailing comma in method macros, thanks to @andrewtbiehl
15+
- Github actions testing support, thanks to @danielpclark & @striezel
16+
- Rust 2021 Edition, thanks to @goyox86
17+
- Support for compiling on OpenBSD, thanks to @marvinthepa
18+
19+
### Fixed
20+
- removed warnings for allow(unused_mut) and allow(unused_variables) on methods! rtself arg, thanks to @danlarkin
21+
- internal ruby string length check, thanks to @mpalmer
22+
1123
## [0.8.4] - 2022-03-29
1224
### Added
1325
- Implement `Eq` and `Hash` for `Symbol`, thanks to @ahogappa0613

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rutie"
3-
version = "0.8.4"
3+
version = "0.9.0"
44
authors = [
55
"Steve Klabnik <[email protected]>",
66
"Dmitry Gritsay <[email protected]>",
@@ -21,7 +21,7 @@ links = "ruby"
2121
no-link = [] # tells build.rs to not link to libruby
2222

2323
[dependencies]
24-
libc = "0.2.121"
24+
libc = "0.2.151"
2525
lazy_static = "1.4.0"
2626

2727
[badges]

0 commit comments

Comments
 (0)