Skip to content

Releases: 23prime/oeis2

Release v1.0.3

24 Oct 14:09
Compare
Choose a tag to compare

Changed

  • Dependent package version for new releases.
  • Unsupport GHC 7.*.
  • Support LTS-14

Release v1.0.2

01 Mar 00:23
Compare
Choose a tag to compare

Added

  • Corresponds to GHC 7.8.4.

Changed

  • Dependent package version.
  • My email address.

Release v1.0.1

09 Jan 01:11
Compare
Choose a tag to compare

Changed

  • Move the "offset" key intKeys to textKeys and implement parser for "offset" values.
  • Fix error in parsing "program" values.
    • When the heads of a "program" value do not include (<program name>), an parse error occurred.

Initial release

08 Jan 22:29
Compare
Choose a tag to compare

A similar library oeis already existed, but there is the following problems:

  1. The key of HashMap is not instance of Eq.
  2. The values of Maple and Mathematica are swaped.
  3. Although OEIS provides JSON, it uses line-keyd ASCII.
  4. HTTPS is not supported.
  5. Cannot receive multiple search results (only the 1st result).
  6. Many search prefixes are provides, but only id: and seq: can be used.
  7. And each function is separate for each Prefix.

First, I sent a few lines pull requests to solve 1, 2.
The request has merged to master of oeis.

After that, I noticed problems from 3..7.
I thought it is hard to fix all of these only with pull request.
So, I have make a new library, and solved all problems of 3..7.

Added

  • Make possible to get all search results.
  • Support all search prefixes in here.
    • Make possible to give each Prefix by data constructor of SearchStatus.

Changed

  • Make to use JSON by OEIS.
  • Support HTTPS.