Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbostock committed Feb 11, 2016
1 parent 8d50fed commit 45c28c4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -29,7 +29,7 @@ If you use NPM, `npm install d3-transition`. Otherwise, download the [latest rel
<script src="https://d3js.org/d3-interpolate.v0.5.min.js"></script>
<script src="https://d3js.org/d3-selection.v0.6.min.js"></script>
<script src="https://d3js.org/d3-timer.v0.3.min.js"></script>
<script src="https://d3js.org/d3-transition.v0.0.min.js"></script>
<script src="https://d3js.org/d3-transition.v0.1.min.js"></script>
```

In a vanilla environment, a `d3_transition` global is exported. [Try d3-transition in your browser.](https://tonicdev.com/npm/d3-transition)
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "d3-transition",
"version": "0.0.9",
"version": "0.1.0",
"description": "Animated transitions for D3 selections.",
"keywords": [
"d3",
Expand All @@ -24,7 +24,7 @@
"pretest": "mkdir -p build && node -e 'process.stdout.write(\"var version = \\\"\" + require(\"./package.json\").version + \"\\\"; export * from \\\"../index\\\"; export {version};\");' > build/bundle.js && rollup -f umd -g d3-interpolate:d3_interpolate,d3-ease:d3_ease,d3-dispatch:d3_dispatch,d3-selection:d3_selection,d3-timer:d3_timer -n d3_transition -o build/d3-transition.js -- build/bundle.js",
"test": "faucet `find test -name '*-test.js'` && eslint index.js src test",
"prepublish": "npm run test && uglifyjs build/d3-transition.js -c -m -o build/d3-transition.min.js && rm -f build/d3-transition.zip && zip -j build/d3-transition.zip -- LICENSE README.md build/d3-transition.js build/d3-transition.min.js",
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git tag -am \"Release $VERSION.\" v${VERSION} && git push --tags && cp build/d3-transition.js ../d3.github.com/d3-transition.v0.0.js && cp build/d3-transition.min.js ../d3.github.com/d3-transition.v0.0.min.js && cd ../d3.github.com && git add d3-transition.v0.0.js d3-transition.v0.0.min.js && git commit -m \"d3-transition ${VERSION}\" && git push"
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git tag -am \"Release $VERSION.\" v${VERSION} && git push --tags && cp build/d3-transition.js ../d3.github.com/d3-transition.v0.1.js && cp build/d3-transition.min.js ../d3.github.com/d3-transition.v0.1.min.js && cd ../d3.github.com && git add d3-transition.v0.1.js d3-transition.v0.1.min.js && git commit -m \"d3-transition ${VERSION}\" && git push"
},
"dependencies": {
"d3-dispatch": "~0.4.0",
Expand Down

0 comments on commit 45c28c4

Please sign in to comment.