Skip to content

Releases: mxsm/cheetah-string

cheetah-string-0.1.9

05 Jan 15:30
2f00aeb

Choose a tag to compare

🐆 Cheetah String V0.1.9 Release 🔊

What's Changed

  • [ISSUE #87]🔖Bump version to 0.1.9 by @mxsm in #89
  • [ISSUE #86]✨Add character-based methods to CheetahString: starts_with_char, ends_with_char, and contains_char by @mxsm in #88

Full Changelog: v0.1.8...v0.1.9

cheetah-string-0.1.8

05 Jan 04:50
7d48abb

Choose a tag to compare

🐆 Cheetah String V0.1.8 Release 🔊

What's Changed

  • [ISSUE #72]✨Add UTF-8 validation methods and deprecate unsafe conversions in CheetahString by @mxsm in #73
  • [ISSUE #74]🚀Implement Small String Optimization (SSO) for CheetahString to reduce heap allocations for short strings by @mxsm in #75
  • [ISSUE #76]✨Add query and transformation methods for CheetahString, including starts_with, ends_with, contains, find, rfind, trim, split, and more by @mxsm in #77
  • [ISSUE #78]✨Add benchmarks for CheetahString performance across creation, cloning, querying, transforming, concatenating, iterating, and size scaling by @mxsm in #79
  • [ISSUE #80]🔖Bump version to 0.1.8 by @mxsm in #81
  • [ISSUE #84]✨Enhance CheetahString with ArcStr support and incremental building methods by @mxsm in #85
  • [ISSUE #82]🔧Update Clippy check to include all features for improved linting by @mxsm in #83

Full Changelog: v0.1.7...v0.1.8

cheetah-string-0.1.7

12 Oct 12:38
cece62f

Choose a tag to compare

🐆 Cheetah String V0.1.7 Release 🔊

What's Changed

  • [ISSUE #66]🎨Bump bytes from 1.8.0 to 1.10.0 🚀 by @mxsm in #67
  • [ISSUE #68]Change from pub fn to pub const fn for from_static_str method by @mxsm in #69
  • [ISSUE #70]🔖Bump version to 0.1.7 by @mxsm in #71

Full Changelog: v0.1.6...v0.1.7

cheetah-string-0.1.6

25 Nov 01:58
3a9c162

Choose a tag to compare

🐆 Cheetah String V0.1.6 Release 🔊

What's Changed

  • [ISSUE #59]⚡️Add #[inline] for some methods by @mxsm in #60
  • [ISSUE #61]📝Update README.md by @mxsm in #62
  • [ISSUE #63]🔖Upgrade the version to 0.1.6 and prepare for release by @mxsm in #64

Full Changelog: v0.1.5...v0.1.6

cheetah-string-0.1.5

17 Nov 14:27
2075165

Choose a tag to compare

🐆 Cheetah String V0.1.5 Release 🔊

What's Changed

  • [ISSUE #45]🔨Update Github actions CI👷 by @mxsm in #46
  • [ISSUE #43]🎨impl From<&String> for CheetahString🚀 by @mxsm in #44
  • [ISSUE #48]⚡️impl From<&CheetahString> for CheetahString by @mxsm in #49
  • [ISSUE #47]Enhance Cheetah String FromIterator by @mxsm in #50
  • [ISSUE #53]🍻impl AsRef for CheetahString by @mxsm in #54
  • [ISSUE #55]🎨Fix CheetahString Serialize empty make Deserialize error🚀 by @mxsm in #56
  • [ISSUE #57]🔖Update version to 0.1.5🔊 by @mxsm in #58

Full Changelog: v0.1.4...v0.1.5

cheetah-string-0.1.4

13 Nov 03:34
7aac208

Choose a tag to compare

🐆 Cheetah String V0.1.4 Release 🔊

What's Changed

Full Changelog: v0.1.3...v0.1.4

cheetah-string-0.1.3

13 Nov 03:09
e313231

Choose a tag to compare

🐆 Cheetah String V0.1.3 Release 🔊

What's Changed

  • [ISSUE #33]🚀 implement Borrow for CheetahString by @mxsm in #34
  • [ISSUE #35]🔥impl From<Cow<'static, str>> for CheetahString 🔥 by @mxsm in #36
  • [ISSUE #37]🔖Update version to 0.1.3🔊 by @mxsm in #38

Full Changelog: v0.1.2...v0.1.3

cheetah-string-0.1.2

11 Nov 03:35
3735fec

Choose a tag to compare

🐆 Cheetah String V0.1.2 Release 🔊

What's Changed

  • [ISSUE #29]🔖Update version to 0.1.2🔊 by @mxsm in #30
  • [ISSUE #31]🐛Fix feature serde Serialize compile error💚 by @mxsm in #32

Full Changelog: v0.1.1...v0.1.2

cheetah-string-0.1.1

10 Nov 15:50
669efe8

Choose a tag to compare

🐆 Cheetah String V0.1.1 Release 🔊

What's Changed

  • [ISSUE #25]Add Debug for CheetahString by @mxsm in #26
  • [ISSUE #27]🔖Update version to 0.1.1🔊 by @mxsm in #28

Full Changelog: v0.1.0...v0.1.1

cheetah-string-0.1.0

08 Nov 13:43
6c77915

Choose a tag to compare

🐆 Cheetah String V0.1.0 Release

What's Changed

  • [ISSUE #1]Update README.md by @mxsm in #2
  • [ISSUE #3]📝Add LICENSE-MIT license by @mxsm in #4
  • [ISSUE #5]✨Add cheetah string function🚀 by @mxsm in #6
  • [ISSUE #7]📝Update .gitignore by @mxsm in #8
  • [ISSUE #9]📝add github action ci by @mxsm in #10
  • [ISSUE #11]🍻Add bench test case by @mxsm in #12
  • [ISSUE #13]Optimize impl From<&'static str> for CheetahString by @mxsm in #14
  • [ISSUE #15]Add doc by @rust-learn-now in #16
  • [ISSUE #17]Add doc for cheetah_string mod by @mxsm in #18
  • [ISSUE #19]Implement PartialEq,Eq,PartialOrd,Ord for CheetahString by @mxsm in #20
  • [ISSUE #21]Optimize CheetahString display by @mxsm in #22
  • [ISSUE #23]📝Update README.md by @mxsm in #24

New Contributors

Full Changelog: https://github.com/mxsm/cheetah-string/commits/v0.1.0