Skip to content

Releases: erg-lang/erg

v0.2.6

18 Aug 17:59

Choose a tag to compare

This release continues to fix type inference bugs (examples/fib.er now compiles successfully again).

What's Changed

  • add instruction for REPL/File execution by @ShantanuKumar in #37
  • Add README translation for simplified Chinese and traditional Chinese by @C-BJ in #39
  • Fix a small problem about traditional Chinese Translation by @C-BJ in #41
  • Make the code of erg use Python highlighting in GitHub by @C-BJ in #44
  • feat: switch to pipe mode if piped from stdin by @KisaragiEffective in #38
  • Fix some small problems about traditional Chinese Translation by @C-BJ in #43
  • cargo fmt by @ShantanuKumar in #42
  • Make Github recognize the English version of CODE_OF_CONDUCT and add a link from CONTRIBUTING to CODE_OF_CONDUCT by @C-BJ in #47
  • Add simplified and traditional Chinese translations of the code of conduct by @C-BJ in #49
  • Synchronize Simplified Chinese and Traditional Chinese translations with the English README by @C-BJ in #46
  • Add support for parse tests by @toddlerer in #50
  • Updata README and all its translations by @C-BJ in #54

New Contributors

Full Changelog: v0.2.5...v0.2.6

v0.2.5

17 Aug 03:41

Choose a tag to compare

What's Changed

  • Stricter type-check
  • Set timeout for REPL
  • Apply trivial clippy fixes by @passcod in #22
  • Fix --verbose option typo by @toddlerer in #33
  • Add Nix support for reproducible build and develop by @SnO2WMaN in #32

New Contributors

Full Changelog: v0.2.4...v0.2.5

v0.2.3

16 Aug 14:48

Choose a tag to compare

What's Changed

  • fix: many type inference bugs
  • fix: use where instead of 'which' in windows by @GreasySlug in #10
  • Added an example of omitting the integer portion in the Ratio document. by @soukouki in #9
  • Replaced JP documents in regular form with honorifics by @soukouki in #12
  • Cache dependencies in GitHub Actions by @TaKO8Ki in #14
  • Fix broken links by @TaKO8Ki in #15
  • Fix sorted Python example by @pingiun in #18
  • Revised the style of jp documents from regular to honorific. by @soukouki in #27
  • Update README.md by @SkiingIsFun123 in #24
  • Update TODO.md by @SkiingIsFun123 in #25

New Contributors

Full Changelog: v0.2.2...v0.2.3

v0.2.2

13 Aug 15:56

Choose a tag to compare

In this release, type inference for general polymorphic types can now take variance into account.
For example, since the Seq(T) type is covariant with respect to T, Range(T), which implements Seq(T) as a trait, for example, is recognized as a subtype of it.

v0.2.0

12 Aug 09:25

Choose a tag to compare

With this release, some of the APIs of the math and random modules of Python are now available.

In addition, several type inference bugs have been fixed.

v0.1.2

12 Aug 04:09

Choose a tag to compare

This release fixes a bug that occurs on UNIX-family OS.

v0.1.1

12 Aug 02:04

Choose a tag to compare

v0.1.1 Pre-release
Pre-release

This release allows the REPL to save the execution state.