Skip to content

Releases: jgarber623/CashCash

v5.0.3

03 Jan 01:29
46abc4e
Compare
Choose a tag to compare

v5.0.2

03 Jan 01:26
7ae02f8
Compare
Choose a tag to compare

Full Changelog: v5.0.1...v5.0.2

v5.0.1

02 Jan 19:42
e447f17
Compare
Choose a tag to compare

Full Changelog: v5.0.0...v5.0.1

v5.0.0

02 Jan 16:08
49eb231
Compare
Choose a tag to compare

Feature complete!

As noted in the updated README.md, CashCash is (and has been, tbh) feature complete and will only receive bug or security fixes in the future.

This release is a breaking change owing to the reorganization in 13b48b3.

v4.0.1

24 Feb 17:40
cc0bdae
Compare
Choose a tag to compare

What's Changed

Full Changelog: v4.0.0...v4.0.1

v4.0.0

15 Oct 02:31
f9b93a8
Compare
Choose a tag to compare

Breaking Changes

Documentation

Chores

Full Changelog: v3.0.0...v4.0.0

v3.0.0

14 Jun 14:44
v3.0.0
ee126e5
Compare
Choose a tag to compare

This release fixes issues with the v2.0.0 release (the one that never happened here on GitHub 🙃 ), rebuilds the source files, and generally cleans up the process of building CashCash.

toArray() disappeared along the way, but is replaced with the much more useful—and consistent with native JavaScript—forEach method:

CashCash('p').forEach(paragraph => console.log(paragraph);

v1.2.0

15 May 19:40
Compare
Choose a tag to compare

This release makes the switch to using Rollup for building artifacts in the dist folder. The files in dist are mostly similar to previous releases:

  • cashcash.js is an uncompressed browser-suitable UMD file,
  • cashcash.min.js is a compressed version of cashcash.js, and
  • cashcash.es.js is an uncompressed ES6-compatible module file.

For development purposes, there are a few new or changed commands that can be run:

  • npm run build will use Rollup to build files to dist,
  • npm start will use Rollup to build files to dist when changes to src/cashcash.js are made, and
  • npm test now uses npm-run-all to more efficiently run the various test scripts.

🎉

v1.1.0

02 Apr 00:28
Compare
Choose a tag to compare

Juuuuuust kidding. Re-adding AMD/Node module definitions. Turns out that's actually pretty handy. 🎉

v1.0.0

31 Mar 21:55
Compare
Choose a tag to compare

CashCash grows up!

This release drops support for AMD/Node style modules in favor of a globals-only approach. When native JS module support lands in more browsers, I intend to reevaluate this change. But for now… window.CashCash.

This release also brings development dependencies up-to-date and tidies up a lot of dusty corners.