All Versions
60
Latest Version
Avg Release Cycle
71 days
Latest Release
894 days ago

Changelog History
Page 1

  • v7.1.0 Changes

    November 04, 2021

    Thanks

    • @nickelc
    • @Stargateur
    • @NilsIrl
    • 👯 @clonejo
    • @Strytyp
    • @schubart
    • @jihchi
    • @nipunn1313
    • @Gungy2
    • @Drumato
    • @Alexhuszagh
    • @Aehmlo
    • @homersimpsons
    • @dne
    • @epage
    • @saiintbrisson
    • @pymongo

    🔄 Changed

    • 📚 documentation fixes
    • 🛠 Ci fixes
    • 🐎 the move to minimal-lexical for float parsing introduced bugs that cannot be resolved right now, so this version moves back to using the standard lib' parser. This is a performance regression*. If you have specific requirements around float parsing, you are strongly encouraged to use recognize_float and another library to convert to a f32 or f64

    ➕ Added

    • alt now works with 1 elment tuples
  • v7.0.0 Changes

    August 21, 2021

    🚀 This release fixes dependency compilation issues and strengthen the minimum supported Rust version (MSRV) policy. This is also the first release without the macros that were used since nom's beginning.

    Thanks

    • @djc
    • @homersimpsons
    • @lo48576
    • @myrrlyn
    • @RalXYZ
    • @nickelc
    • @cenodis

    ➕ Added

    • take_until1 combinator
    • more to_owned implementations
    • 0️⃣ fail: a parser that always fail, useful as default condition in other combinators
    • 📜 text to number parsers: in the character::streaming and character::complete modules, there are parsers named i8, u16, u32, u64, u128 and u8 ,u16, u32, u64, u128 that recognize decimal digits and directly convert to a number in the target size (checking for max int size)

    ✂ Removed

    • 🚚 now that function combinators are the main way to write parsers, the old macro combinators are confusing newcomers. THey have been removed
    • 🚚 the BitSlice input type from bitvec has been moved into the nom-bitvec crate. nom does not depend on bitvec now
    • 🚚 regex parsers have been moved into the nom-regex crate. nom does not depend on regex now
    • 📜 ErrorKind::PArseTo was not needed anymore

    🔄 Changed

    • 😌 relax trait bounds
    • 🐎 some performance fixes
    • split_at_position* functions should now be guaranteed panic free
    • 📜 the lexical-core crate used for float parsing has now been replaced with minimal-lexical: the new crate is faster to compile, faster to parse, and has no dependencies

    🛠 Fixed

    • infinite loop in escaped combinator
    • many_m_n now fails if min > max
  • v6.2.1 Changes

    June 23, 2021

    Thanks

    🚀 This release was done thanks to the hard work of (by order of appearance in the commit list):

    • @homersimpsons

    🛠 Fixed

    • 🛠 fix documentation building
  • v6.2.0 Changes

    February 15, 2021

    Thanks

    🚀 This release was done thanks to the hard work of (by order of appearance in the commit list):

    • @DavidKorczynski
    • @homersimpsons
    • @kornelski
    • @lf-
    • @lewisbelcher
    • @ronan-d
    • @weirane
    • @heymind
    • @marcianx
    • @Nukesor

    ➕ Added

    • nom is now regularly fuzzed through the OSSFuzz project

    🔄 Changed

    • 📚 lots of documentation fixes
    • 😌 relax trait bounds
    • ↪ workarounds for dependency issues with bitvec and memchr
  • v6.1.2 Changes

    February 15, 2021

    🔄 Changed

    • 🛠 Fix cargo feature usage in previous release
  • v6.1.1 Changes

    February 15, 2021

    Thanks

    🚀 This release was done thanks to the hard work of (by order of appearance in the commit list):

    • @nickelc

    🔄 Changed

    • 🛠 Fix dependenciy incompatibilities: Restrict the bitvec->funty dependency to <=1.1
  • v6.1.0 Changes

    January 23, 2021

    Thanks

    🚀 This release was done thanks to the hard work of (by order of appearance in the commit list):

    • @sachaarbonel
    • @vallentin
    • @Lucretiel
    • @meiomorphism
    • @jufajardini
    • @neithernut
    • @drwilco

    🔄 Changed

    • 📚 readme and documentation fixes
    • rewrite of fold_many_m_n
    • 📜 relax trait bounds on some parsers
    • 👀 implement std::error::Error on VerboseError
  • v6.0.1 Changes

    November 24, 2020

    Thanks

    🚀 This release was done thanks to the hard work of (by order of appearance in the commit list):

    • @Leonqn
    • @nickelc
    • @toshokan
    • @juchiast
    • @shssoichiro
    • @jlkiri
    • @chifflier
    • @fkloiber
    • @Kaoet
    • @Matthew Plant

    ➕ Added

    • 👀 ErrorConvert implementation for VerboseError

    🔄 Changed

    • 🛠 CI fixes
    • fold_many* now accept FnMut for the accumulation function
    • 😌 relaxed input bounds on length_count
  • v6.0.0 Changes

    October 31, 2020

    Thanks

    🚀 This release was done thanks to the hard work of (by order of appearance in the commit list):

    • @chifflier
    • @shepmaster
    • @amerelo
    • @razican
    • @Palladinium
    • @0ndorio
    • Sebastian Zivota
    • @keruspe
    • @devonhollowood
    • @parasyte
    • @nnt0
    • @AntoineCezar
    • @GuillaumeGomez
    • @eijebong
    • @stadelmanma
    • @sphynx
    • @snawaz
    • @fosskers
    • @JamesHarrison
    • @calebsander
    • @jthornber
    • @ahmedcharles
    • @rljacobson
    • @benkay86
    • @georgeclaghorn
    • @TianyiShi2001
    • @shnewto
    • @alfriadox
    • @resistor
    • @myrrlyn
    • @chipsenkbeil
    • @ruza-net
    • @fanf2
    • @jameysharp
    • @FallenWarrior2k
    • @jmg-duarte
    • @ericseppanen
    • @hbina
    • Andreas Molzer
    • @nickelc
    • @bgourlie
  • v5.1.1 Changes

    February 24, 2020

    Thanks

    • 🛠 @Alexhuszagh for float fixes
    • 🛠 @AlexanderEkdahl, @JoshOrndorff, @akitsu-sanae for docs fixes
    • ⚡️ @ignatenkobrain: dependency update
    • @derekdreery: map implementation for errors
    • 🛠 @Lucretiel for docs fixes and compilation fixes
    • ⚠ adytzu2007: warning fixes
    • 🛠 @lo48576: error management fixes

    🛠 Fixed

    • C symbols compilation errors due to old lexical-core version

    ➕ Added

    • Err now has a map function

    🔄 Changed

    • 👉 Make error::context() available without alloc feature