Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.0 #112

Merged
merged 8 commits into from
Feb 12, 2018
Merged

1.0.0 #112

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@
**Note**: Gaps between patch versions are faulty/broken releases. **Note**: A feature tagged as Experimental is in a
high state of flux, you're at risk of it changing without notice.

# 1.0.0

* **Breaking Change**
* upgrade to `fp-ts@1.0.0`
* see https://github.com/gcanti/io-ts/pull/112 (@gcanti)

# 0.9.8

* **New Feature**
Expand Down
150 changes: 79 additions & 71 deletions README.md

Large diffs are not rendered by default.

316 changes: 0 additions & 316 deletions flow-tests.js

This file was deleted.

8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "io-ts",
"version": "0.9.8",
"version": "1.0.0",
"description": "TypeScript compatible runtime type system for IO validation",
"files": ["lib"],
"main": "lib/index.js",
Expand All @@ -9,18 +9,14 @@
"lint": "tslint src/**/*.ts test/**/*.ts",
"typings-checker":
"typings-checker --allow-expect-error --project typings-checker/tsconfig.json typings-checker/index.ts",
"mocha": "mocha -r ts-node/register test/*.ts",
"mocha": "TS_NODE_CACHE=false mocha -r ts-node/register test/*.ts",
"prettier":
"prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
"fix-prettier":
"prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test,examples,exercises}/**/*.ts\"",
"flow-copy-definition-files": "cp src/*.js.flow lib",
"flow-test": "flow status",
"flow-fix-prettier":
"prettier --no-semi --single-quote --print-width 120 --parser flow --write \"{src,test,examples,exercises}/**/*.js.flow\"",
"test": "npm run prettier && npm run lint && npm run typings-checker && npm run mocha",
"clean": "rm -rf lib/*",
"build": "npm run clean && tsc && npm run flow-copy-definition-files",
"build": "npm run clean && tsc",
"perf": "node perf/index"
},
"repository": {
Expand All @@ -34,7 +30,7 @@
},
"homepage": "https://github.com/gcanti/io-ts",
"dependencies": {
"fp-ts": "^0.6.4"
"fp-ts": "^1.0.0"
},
"devDependencies": {
"@types/benchmark": "1.0.31",
Expand Down
9 changes: 0 additions & 9 deletions src/PathReporter.js.flow

This file was deleted.

Loading