Changelog
All notable changes to this project will be documented in this file.
See Conventional Commits for commit guidelines.
7.0.0
1 Dec 2022
💥 BREAKING CHANGES
- Minimum supported Node version is v14.18; we’re dropping v12 support
6.1.0
12 Aug 2022
✨ Features
- export types (11b5fb9)
6.0.17
18 Apr 2022
🔧 Fixed
- tweak types (6be1471)
6.0.0
9 Sept 2021
✨ Features
- migrate to ES Modules (8c9d95d)
💥 BREAKING CHANGES
- programs now are in ES Modules and won’t work with Common JS
require()
5.1.0
24 May 2021
✨ Features
- config file based major bump blacklisting (e15f9bb)
5.0.15
11 Apr 2021
⏪ Reverts
- Revert “chore: setup refresh” (23cf206)
5.0.1
28 Jan 2021
🔧 Fixed
- add
testStats
to npmignore (f3c84e9)
5.0.0
23 Jan 2021
✨ Features
- rewrite in TS, start using named exports (c7b2268)
💥 BREAKING CHANGES
- previously:
import splitEasy from …
— nowimport { splitEasy } from …
4.0.0
28 Nov 2020
Accidental version bump during migration to SourceHut. Sorry about that.
3.1.0
27 Sept 2020
✨ Features
- rebase, split tests into separate files and add examples (18e0373)
3.0.37
5 Oct 2019
Performance Improvements
- remove check-types-mini (4eae010)
2.6.0
20 Jan 2019
- Various documentation and setup tweaks after we migrated to monorepo
- Setup refresh: updated dependencies and all config files using automated tools
2.4.0
17 Oct 2018
- Updated all dependencies
- Restored unit test coverage tracking: reporting in terminal and coveralls.io
- Restored unit test linting
2.3.0
11 Jun 2018
GitHub sold us out. In the meantime, we:
- Migrated to BitBucket (to host repo + perform CI) and Codacy (for code quality audit)
- Dropped BitHound (RIP) and Travis
- Removed
package-lock
2.2.0
3 May 2018
- Set up Prettier
- Removed
package.lock
and.editorconfig
- Wired Rollup to remove comments from non-dev builds. This means we can now leave the
console.log
s in the source code — Rollup will remove from production code.
2.1.0
6 Mar 2018
- PR #3 from @mac- now caters double quotes wrapping double quotes, used as a means of escaping code
- 🔧 Updated dependencies. Rollup is continuously improving and build sizes are getting smaller.
2.0.0
8 Nov 2017
- Rewrote in ES modules, set up the Rollup
- Removes Standard and set up raw ESLint on
airbnb-base
config with semicolons off - Additional checks on options object
1.3.0
16 Aug 2017
opts.removeThousandSeparatorsFromNumbers
. On by default. That’sstring-remove-thousand-separators
(npm, GitLab) internally doing it.opts.padSingleDecimalPlaceNumbers
. On by default.10.2
→10.20
.opts.forceUKStyle
. Off by default.10,15
→10.15
.
1.2.0
13 Aug 2017
- Now algorithm skips empty rows, where each column within the row contains only empty space.
1.1.0
13 Aug 2017
- Automatic trimming of all leading and trailing whitespace. Some IDE’s (like Atom) add a trailing empty line at the end of a file. If you opened a CSV and saved it over, such IDE’s would a trailing empty line.
csv-split-easy
automatically trims all whitespace in front and in the end of an incoming string now, so such whitespace should not be an issue now.
1.0.0
13 Aug 2017
- First public release