Skip to content

Commit

Permalink
Prepare Release v1.1.0 (#226)
Browse files Browse the repository at this point in the history
* Prepare Release v1.1.0

* fix table pure-render-decorator dep version (same as core)

* consider docs package version when computing list
  • Loading branch information
giladgray authored Nov 23, 2016
1 parent a90bf1a commit 9ae2871
Show file tree
Hide file tree
Showing 24 changed files with 38,878 additions and 40,505 deletions.
Binary file modified docs/assets/fonts/icons-16.eot
Binary file not shown.
Binary file modified docs/assets/fonts/icons-16.ttf
Binary file not shown.
Binary file modified docs/assets/fonts/icons-16.woff
Binary file not shown.
Binary file modified docs/assets/fonts/icons-20.eot
Binary file not shown.
Binary file modified docs/assets/fonts/icons-20.ttf
Binary file not shown.
Binary file modified docs/assets/fonts/icons-20.woff
Binary file not shown.
2,278 changes: 1,412 additions & 866 deletions docs/blueprint-landing.css

Large diffs are not rendered by default.

34,168 changes: 18,302 additions & 15,866 deletions docs/blueprint-landing.js

Large diffs are not rendered by default.

Binary file modified docs/docs/assets/icons-16.eot
Binary file not shown.
Binary file modified docs/docs/assets/icons-16.ttf
Binary file not shown.
Binary file modified docs/docs/assets/icons-16.woff
Binary file not shown.
Binary file modified docs/docs/assets/icons-20.eot
Binary file not shown.
Binary file modified docs/docs/assets/icons-20.ttf
Binary file not shown.
Binary file modified docs/docs/assets/icons-20.woff
Binary file not shown.
49 changes: 24 additions & 25 deletions docs/docs/docs.css

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

42,852 changes: 19,120 additions & 23,732 deletions docs/docs/docs.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ <h3>A React UI toolkit for the web</h3>
<h2>Build complex, data-dense interfaces with ease</h2>
<div class="pt-running-text">
Blueprint is a collection of <a href="https://facebook.github.io/react/" target="_blank">React</a>
UI components, covering the majority of the common interface elements, patterns and interactions on
the web. Using Blueprint ensures that you’ll end up with an elegant, easy-to-use UI, freeing you to
UI components that cover the majority of the common interface elements, patterns, and interactions on
the web. Using Blueprint ensures that you’ll end up with an elegant and easy-to-use UI, freeing you to
focus on building your product&mdash;not the atomic pieces that comprise it.
</div>
<a class="pt-button pt-large pt-intent-primary" href="docs/">Go to documentation</a>
Expand Down Expand Up @@ -150,7 +150,7 @@ <h4>Learn and contribute!</h4>
<div class="pt-copyright pt-dark">
<div class="pt-container">
<div>© Palantir Technologies</div>
<div>Licensed under <a href="https://www.apache.org/licenses/LICENSE-2.0" target="_blank">Apache 2</a></div>
<div>Licensed under <a href="https://github.com/palantir/blueprint/blob/master/LICENSE" target="_blank">BSD</a></div>
</div>
</div>
</div>
Expand Down
4 changes: 4 additions & 0 deletions gulp/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,11 @@ module.exports = (gulp, plugins, blueprint) => {
child.on("close", () => {
/** @type {Map<string, string>} */
const majorVersionMap = stdout.split("\n")
// turn release-* tags into version numbers
.filter(val => /release-[1-9]\d*\.\d+\.\d+.*/.test(val))
.map(val => val.slice(8))
// inject current version (unreleased package bump)
.concat(require(path.resolve(cwd, "package.json")).version)
.reduce((map, version) => {
const major = semver.major(version);
if (!map.has(major) || semver.gt(version, map.get(major))) {
Expand All @@ -204,6 +207,7 @@ module.exports = (gulp, plugins, blueprint) => {
}, new Map());
// sort in reverse order (so latest is first)
const majorVersions = Array.from(majorVersionMap.values()).sort(semver.rcompare);
plugins.util.log("Versions:", majorVersions.join(", "));
text.fileStream(filenames.versions, JSON.stringify(majorVersions, null, 2))
.pipe(gulp.dest(config.data));
done();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprint",
"version": "1.0.1",
"version": "1.1.0",
"private": true,
"description": "A React UI toolkit for the web.",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blueprintjs/core",
"version": "1.0.1",
"version": "1.1.0",
"description": "Core styles & components",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/datetime/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@blueprintjs/datetime",
"version": "1.0.1",
"version": "1.1.0",
"description": "Components for interacting with dates and times",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"style": "dist/blueprint-datetime.css",
"dependencies": {
"@blueprintjs/core": "^1.0.1",
"@blueprintjs/core": "^1.1.0",
"classnames": "^2.2",
"moment": "^2.14.1",
"react-day-picker": "^2.5.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@blueprintjs/docs",
"version": "1.0.1",
"version": "1.1.0",
"description": "Blueprint Docs",
"main": "dist/index.html",
"private": true,
"dependencies": {
"@blueprintjs/core": "^1.0.1",
"@blueprintjs/datetime": "^1.0.1",
"@blueprintjs/table": "^1.0.1",
"@blueprintjs/core": "^1.1.0",
"@blueprintjs/datetime": "^1.1.0",
"@blueprintjs/table": "^1.1.0",
"chroma-js": "1.1.1",
"classnames": "2.2.5",
"dom4": "1.8.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/landing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blueprint-landing",
"version": "1.0.1",
"version": "1.1.0",
"description": "Blueprint landing page",
"private": true,
"author": "Palantir Technologies",
Expand All @@ -22,7 +22,7 @@
"watch": "onchange 'src/**' -- npm-run-all build:copy build:webpack"
},
"devDependencies": {
"@blueprintjs/core": "^1.0.1",
"@blueprintjs/core": "^1.1.0",
"autoprefixer": "6.5.1",
"classnames": "2.2.5",
"css-loader": "0.23.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/table/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@blueprintjs/table",
"version": "1.0.1",
"version": "1.1.0",
"description": "Scalable interactive table component",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand All @@ -19,10 +19,10 @@
"watch": "onchange 'src/**' 'preview/*.ts*' -- npm-run-all build:gulp build:preview"
},
"dependencies": {
"@blueprintjs/core": "^1.0.1",
"@blueprintjs/core": "^1.1.0",
"classnames": "^2.2",
"es6-shim": "^0.35",
"pure-render-decorator": "1.2.1"
"pure-render-decorator": "^1.1"
},
"devDependencies": {
"css-loader": "0.26.0",
Expand Down

2 comments on commit 9ae2871

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prepare Release v1.1.0 (#226)

Preview: docs Coverage: core | datetime

@blueprint-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Prepare Release v1.1.0 (#226)

Preview: docs Coverage: core | datetime

Please sign in to comment.