Skip to content

Commit

Permalink
remove dbg / release 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
matsadler committed Nov 30, 2022
1 parent fc4916b commit 0ccc4cb
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

### Security

## [0.4.2] - 2022-11-30
### Fixed
- Removed errant `dbg!()`.

## [0.4.1] - 2022-11-29
### Fixed
- `scan_args::get_kwargs` error/segfault when leading optional args were not
Expand Down Expand Up @@ -203,7 +207,8 @@
- Pre-built bindings for Ruby 2.6 - 3.1 on common platforms, build-time
generated bindings otherwise.

[Unreleased]: https://github.com/matsadler/magnus/compare/0.4.1...HEAD
[Unreleased]: https://github.com/matsadler/magnus/compare/0.4.2...HEAD
[0.4.2]: https://github.com/matsadler/magnus/compare/0.4.1...0.4.2
[0.4.1]: https://github.com/matsadler/magnus/compare/0.4.0...0.4.1
[0.4.0]: https://github.com/matsadler/magnus/compare/0.3.2...0.4.0
[0.3.2]: https://github.com/matsadler/magnus/compare/0.3.1...0.3.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "magnus"
version = "0.4.1"
version = "0.4.2"
authors = ["Mat Sadler <mat@sourcetagsandcodes.com>"]
edition = "2018"
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_exception_ruby/ext/ahriman/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/custom_exception_rust/ext/ahriman/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/rust_blank/ext/rust_blank/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/scan_args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,6 @@ mod private {
const LEN: usize = 2;

fn from_slice(vals: &[Value]) -> Result<Self, Error> {
dbg!(vals.len());
if vals.len() <= <Self as ScanArgsOpt>::LEN {
Ok((
vals.get(0)
Expand Down

0 comments on commit 0ccc4cb

Please sign in to comment.