diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2aee482 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,23 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.2](https://github.com/oxc-project/nodejs-built-in-modules/compare/nodejs-built-in-modules-v0.0.1...nodejs-built-in-modules-v0.0.2) - 2025-12-26 + +### Added + +- add Rust-based builtin modules generator with automated workflow + +### Fixed + +- make `is_nodejs_builtin_module` fail for `node:random-specifier` + +### Other + +- use criterion2 instead of criterion +- add benchmark results comparing contains vs binary_search diff --git a/Cargo.lock b/Cargo.lock index cfb4231..f4ddc6d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -139,7 +139,7 @@ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" [[package]] name = "nodejs-built-in-modules" -version = "0.0.1" +version = "0.0.2" dependencies = [ "criterion2", ] diff --git a/Cargo.toml b/Cargo.toml index bc3746e..e7c3fd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver = "2" [package] name = "nodejs-built-in-modules" -version = "0.0.1" +version = "0.0.2" authors = ["Boshen "] categories = [] edition = "2024"