Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@ jobs:
- name: cargo test
run: cargo test --locked

- name: cargo test (no default features)
run: cargo test --no-default-features --locked

- name: cargo test ("lookup-ranges")
run: cargo test --no-default-features --features lookup-ranges --locked

- name: cargo test ("test-regex")
run: cargo test --no-default-features --features test-regex --locked

- name: cargo clippy
run: cargo clippy --all-targets --locked -- -D warnings

Expand Down
17 changes: 12 additions & 5 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# shwild.Rust - CHANGES <!-- omit in toc -->


## 0.1.6 - 10th July 2026

* preparatory changes;
* consistency fixes;
* added **benches/macros.rs**;


## 0.1.5 - 9th July 2026

* bunch of boilerplate improvements: .gitattributes; .vimrc; EXAMPLES.md; VS Code settings; ignores; license; rustfmt.toml;
Expand All @@ -10,7 +17,7 @@

* added **CHANGES.md** (back-filled) and **NEWS.md**;
* added **EXAMPLES.md** and per-example documentation;
* **README.md** badges, dependency links, related projects, and `null-feature` documentation;
* **README.md** badges, dependency links, related projects, and `"null-feature"` documentation;
* added crate-level `//!` documentation;
* added CI (`.github/workflows/ci.yml`) and quality scripts (`scripts/fmt`, checkers);
* added `rust-version` (MSRV 1.79);
Expand All @@ -31,16 +38,16 @@

## 0.1.2 - 3rd November 2024

* added `test-regex` feature — optional **regex** dependency for benchmarks and scratch programs;
* enabled `lookup-ranges` in default features;
* added `"test-regex"` feature — optional **regex** dependency for benchmarks and scratch programs;
* enabled `"lookup-ranges"` in default features;
* added **cw-regex** benchmark;
* added **character-play** scratch program;
* added `regex_comparision_tests` unit tests (gated on `test-regex`);
* added `regex_comparision_tests` unit tests (gated on `"test-regex"`);


## 0.1.1 - 3rd November 2024

* added `lookup-ranges` feature — optional **collect-rs** dependency for `UnicodePointMap`-based range matching;
* added `"lookup-ranges"` feature — optional **collect-rs** dependency for `UnicodePointMap`-based range matching;
* added **Cargo.lock**;
* README: added Features section; clarified Wild-1 escape behaviour in pattern elements;

Expand Down
Loading
Loading