Skip to content

Commit 55674ed

Browse files
committed
Prepare for major release.
1 parent 019ad45 commit 55674ed

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2010-2015 Mike Bostock
1+
Copyright 2010-2016 Mike Bostock
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ And finally **iteration methods** that apply functions to elements in the array:
3232

3333
## Installing
3434

35-
If you use NPM, `npm install d3-array`. Otherwise, download the [latest release](https://github.com/d3/d3-array/releases/latest). You can also load directly from [d3js.org](https://d3js.org), either as a [standalone library](https://d3js.org/d3-array.v0.8.min.js) or as part of [D3 4.0](https://github.com/d3/d3). AMD, CommonJS, and vanilla environments are supported. In vanilla, a `d3` global is exported:
35+
If you use NPM, `npm install d3-array`. Otherwise, download the [latest release](https://github.com/d3/d3-array/releases/latest). You can also load directly from [d3js.org](https://d3js.org), either as a [standalone library](https://d3js.org/d3-array.v1.min.js) or as part of [D3 4.0](https://github.com/d3/d3). AMD, CommonJS, and vanilla environments are supported. In vanilla, a `d3` global is exported:
3636

3737
```html
38-
<script src="https://d3js.org/d3-array.v0.8.min.js"></script>
38+
<script src="https://d3js.org/d3-array.v1.min.js"></script>
3939
<script>
4040
4141
var min = d3.min(array);

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"pretest": "rm -rf build && mkdir build && rollup --banner \"$(preamble)\" -f umd -n d3 -o build/d3-array.js -- index.js",
3030
"test": "tape 'test/**/*-test.js' && eslint index.js src",
3131
"prepublish": "npm run test && uglifyjs --preamble \"$(preamble)\" build/d3-array.js -c -m -o build/d3-array.min.js",
32-
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cp build/d3-array.js ../d3.github.com/d3-array.v0.8.js && cp build/d3-array.min.js ../d3.github.com/d3-array.v0.8.min.js && cd ../d3.github.com && git add d3-array.v0.8.js d3-array.v0.8.min.js && git commit -m \"d3-array ${VERSION}\" && git push && cd - && zip -j build/d3-array.zip -- LICENSE README.md build/d3-array.js build/d3-array.min.js"
32+
"postpublish": "VERSION=`node -e 'console.log(require(\"./package.json\").version)'`; git push && git push --tags && cp build/d3-array.js ../d3.github.com/d3-array.v1.js && cp build/d3-array.min.js ../d3.github.com/d3-array.v1.min.js && cd ../d3.github.com && git add d3-array.v1.js d3-array.v1.min.js && git commit -m \"d3-array ${VERSION}\" && git push && cd - && zip -j build/d3-array.zip -- LICENSE README.md build/d3-array.js build/d3-array.min.js"
3333
},
3434
"devDependencies": {
3535
"eslint": "2",
3636
"package-preamble": "0.0",
37-
"rollup": "0.27",
37+
"rollup": "0.31",
3838
"seedrandom": "2",
3939
"tape": "4",
4040
"uglify-js": "2"

0 commit comments

Comments
 (0)