Skip to content

Releases: artichoke/roe

v0.0.5

02 Jun 17:38
2f4f7cb
Compare
Choose a tag to compare

Release roe 0.0.5.

roe is published on crates.io.

This release makes packaging improvements by adding "no alloc" Crates.io category metadata.

Status

roe is currently a work in process. Many APIs are not implemented or partially implemented and may panic. No new APIs have been added since v0.0.4.

What's Changed

  • Remove actions-rs GitHub Actions by @lopopolo in #113
  • chore(deps): Bump rubocop from 1.36.0 to 1.37.1 by @dependabot in #114
  • chore: Update .github/workflows/rustdoc.yaml in artichoke/roe by @lopopolo in #115
  • chore(deps): Bump rubocop from 1.37.1 to 1.39.0 by @dependabot in #116
  • Add retry config to markdown-link-check JSON by @lopopolo in #117
  • chore: Update .github/workflows/audit.yaml in artichoke/roe by @lopopolo in #118
  • chore: Update .github/workflows/code-coverage.yaml in artichoke/roe by @lopopolo in #119
  • chore(deps): Bump rubocop from 1.39.0 to 1.41.1 by @dependabot in #120
  • chore(deps): Bump mheap/github-action-required-labels from 2 to 3 by @dependabot in #121
  • chore: Update .github/workflows/code-coverage.yaml in artichoke/roe by @lopopolo in #122
  • chore(deps): Bump rubocop from 1.41.1 to 1.44.1 by @dependabot in #123
  • chore(deps): Bump rubocop from 1.44.1 to 1.46.0 by @dependabot in #124
  • chore(deps): Bump rubocop from 1.46.0 to 1.48.1 by @dependabot in #125
  • chore: Update .github/workflows/rustdoc.yaml in artichoke/roe by @lopopolo in #126
  • Upgrade Ruby version and bundler version by @lopopolo in #127
  • Use stricter version pinning for GitHub Actions by @lopopolo in #128
  • Stop monitoring Twitter links, fix markdown link check job by @lopopolo in #131
  • chore(deps): Bump ruby/setup-ruby from 1.147.0 to 1.148.0 by @dependabot in #130
  • chore(deps): Bump rubocop from 1.48.1 to 1.50.2 by @dependabot in #129
  • chore: Update .github/workflows/code-coverage.yaml in artichoke/roe by @lopopolo in #132
  • Add code coverage badge to README by @lopopolo in #133
  • chore(deps): Bump rubocop from 1.50.2 to 1.51.0 by @dependabot in #134
  • chore(deps): Bump ruby/setup-ruby from 1.148.0 to 1.150.0 by @dependabot in #135
  • chore(deps): Bump aws-actions/configure-aws-credentials from 2.0.0 to 2.1.0 by @dependabot in #136
  • Add no-std, no-alloc crates.io category metadata by @lopopolo in #137

Full Changelog: v0.0.4...v0.0.5

v0.0.4

01 Oct 05:23
b7cf1da
Compare
Choose a tag to compare

Release roe 0.0.4.

roe is published on crates.io.

Status

roe is currently a work in process. Many APIs are not implemented or partially implemented and may panic. No new APIs have been added since v0.0.3.

Improvements

  • Implement code coverage testing. #100
  • Move readme doctest module at the end of the file. #101
  • Update bstr to 1.0. #112

v0.0.3

08 Aug 05:29
dcd86dc
Compare
Choose a tag to compare

Release roe 0.0.3.

roe is published on crates.io.

Status

roe is currently a work in process. Many APIs are not implemented or partially implemented and may panic. No new APIs have been added since v0.0.2.

Packaging improvements

  • Use proper AsMut generic bound on make_ascii_lowercase. #22
  • Fix typo'd clippy allow. #40
  • Update version-sync to 0.9.3 and trim some deps from Cargo.lock. #64
  • Fix clippy::manual_assert lint violations in Rust 1.58. #70
  • Fix up docs so they build with no default features. #97

v0.0.2

15 Feb 03:27
6f2a8b8
Compare
Choose a tag to compare

Release roe 0.0.2.

roe is published on crates.io.

roe provides implementations of Unicode case mapping for folding strategies including full, Turkic, and ASCII. roe supports lowercase, uppercase, and titlecase transforms with fast path APIs for ASCII strings.

roe operates on byte slices with the assumption that they are conventionally UTF-8.

roe is a no_std crate with optional dependencies on alloc and std.

This 0.0.2 release includes some fixes for rendering documentation on crates.io and docs.rs.

v0.0.1

15 Feb 03:04
e25ce89
Compare
Choose a tag to compare

Release roe 0.0.1.

roe is published on crates.io.

roe provides implementations of Unicode case mapping for folding strategies including full, Turkic, and ASCII. roe supports lowercase, uppercase, and titlecase transforms with fast path APIs for ASCII strings.

roe operates on byte slices with the assumption that they are conventionally UTF-8.

roe is a no_std crate with optional dependencies on alloc and std.

This 0.0.1 release is incomplete and should be considered work in progress. There are missing APIs and panics for unimplemented pieces of Roe.