Skip to content

Commit 524730e

Browse files
committed
Small changes
1 parent d3aac31 commit 524730e

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ All notable changes to the library should be put here
66

77
## 0.3.0
88

9+
### Changes
10+
911
- **BREAKING:** Rename `as_ptr_mut` to `as_mut_ptr`
1012
- **BREAKING:** Rename `as_raw_mut` to `as_mut_raw`
11-
- **BREAKING:** Change definition of `IsJanetAbstract` trait
1213
- **BREAKING:** `JanetAbstract::new` now takes a value
1314
- **BREAKING:** Make the `janetrs::types` module private and export everything inside it in the upper module
1415
- **BREAKING:** Modify `From<&str>` for `Janet` to return a Janet keyword if `&str` starts with `:`
@@ -28,9 +29,6 @@ All notable changes to the library should be put here
2829
- Add `Janet::int64`
2930
- Add `Janet::uint64`
3031
- Create `janetrs_version` crate to use as common code used by `janet_version` macro and `janetrs::util` module
31-
- Expose `jcatch!` macro only if Janet version supports the underlying mechanism
32-
- Fix some clippy lints
33-
- Fix compilation on no_std environment.
3432
- Implement `DeepEq` for most types
3533
- Implement `Debug` and `Display` for `JanetSymbol`
3634
- Implement `Debug` and `Display` for `JanetKeyword`
@@ -45,6 +43,13 @@ All notable changes to the library should be put here
4543
- Refactor `Display` implementation of `Janet` type
4644
- Refactor some implementations of `From` and `TryFrom` related to `Janet` type
4745
- Reduce code duplication in `JanetAbstract` functions
46+
47+
### Fixes
48+
49+
- **BREAKING:** Change definition of `IsJanetAbstract` trait
50+
- Expose `jcatch!` macro only if Janet version supports the underlying mechanism
51+
- Fix some clippy lints
52+
- Fix compilation on no_std environment.
4853
- Make some functions const if using a recent enough Rust version
4954

5055
## 0.2.0

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ This software is licensed under the terms of the [MIT Public License](./LICENSE)
5050

5151
### TODO: Types: Lacking or Incomplete
5252

53-
- [x] JanetAbstract
54-
- [x] JanetFiber
55-
- [x] JanetFunction
56-
- [x] GC functions
53+
- [ ] Marshaling
5754

5855
`[ ]: Lacking`
5956
`[I]: Incomplete`

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
//! This software is licensed under the terms of the [MIT Public License](./LICENSE).
4343
//!
4444
//! ### TODO: Types/Traits: Lacking or Incomplete
45-
//! - [X] Marshaling
45+
//! - [ ] Marshaling
4646
//!
4747
//! `[ ]: Lacking`
4848
//! `[I]: Incomplete`

0 commit comments

Comments
 (0)