Releases: kmizu/scomb
Releases · kmizu/scomb
SComb 0.8.1 is released!
SComb 0.7.1 is released!
- Support Scala 2.13.x
SComb 0.7.0 is released!
- Support two combinators
~>
, which is same as>>
except for precedence~<
, which is same as<<
except for precedence
- From this version, use x.y.z format versioning
- Note that you must write
"com.github.kmizu" %% "scomb" % "0.7.0"
- Instead of
"com.github.kmizu" %% "scomb" % "0.7"
- Note that you must write
SComb 0.6 is released!
- In most combinators, use by-value parameter instead of by-name parameter
- The decision is done mainly for performance reason
- And add rule combinator
See 276db0f if you want to know about details.
SComb 0.5 is released!
SComb 0.4 is released!
- Fix bug related to
regularExpression()
andr()
combinators- See 6a1be0c
SComb 0.3 is released!
- Use call by name instead of call by value in many combinators
SComb 0.2 is released!
v0.2.0 Setting version to 0.2
SComb 0.1 is released!
v0.1.0 Setting version to 0.1
SComb 0.0.1 is released!
- basic primitive combinators are implemented
oneOf
string
- some compositional combinators are also implemented
*
~
chainl
|
map
flatMap
- Calculator example