Skip to content

Commit 19729fe

Browse files
authored
Beta release prep (#1180)
* update the getting started section * Update tutorial * Start using next instead of canary for package versions People are/will base sites on these and now that we're in beta, don't want people basing sites off canary as that's highly unstable. As soon as we hit 1.0, we'll use 1.0 as well. * Update CHANGELOG for beta 1
1 parent 54cbbee commit 19729fe

File tree

19 files changed

+131
-142
lines changed

19 files changed

+131
-142
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Change Log
22

3+
## [1.0.0-beta.1] - 2017-06-15
4+
5+
Our first beta!!! 🎉
6+
7+
### Added
8+
* Allow for gatsby-remark-smartypants options #1166 @mitchejj
9+
* New design (for gatsbyjs.org) + new home page #1170 @kyleamathews
10+
* Add ability to locally define plugins #1126 @0x80
11+
* Add rough draft for docs for creating source plugins #1159 @kyleamathews
12+
* Optimizations around prefetching page resources #1133 @kyleamathews
13+
* Redux example site #1081 @scottyeck
14+
* Sitemap Generator Plugin #1115 @nicholaswyoung
15+
* Add documentation to gatsby-remark-prism @kyleamathews
16+
17+
### Changed
18+
* Move all filter operators for connections under a top-level "filter" field #1177 @kyleamathews
19+
* Change `linkPrefix` to `pathPrefix` and add an example site #1155 @kyleamathews
20+
* Make the plugin options for remark plugins the second argument (like everywhere else) #1167 @kyleamathews
21+
* Start using next instead of canary in example sites for package versions @kyleamathews
22+
23+
### Fixed
24+
* Fix graphql compiler on typescript #949 @fabien0102
25+
* Replace react.createClass with ES6 classes in exmaples html.js, add PropTypes #1169 @abachuk
26+
* Fix windows build issue #1158 @kyleamathews
27+
* Use custom delimiter when flattening example values for enum fields so easy to convert back @kyleamathews
28+
* gatsby-remark-responsive-images: use span instead of div #1151 @rstacruz
29+
* Add check that we can actually find a linked image file node @kyleamathews
30+
* Ignore SVGs in gatsby-remark-responsive-image #1157 @fk
31+
* Replace using levelup for caching with lowdb to avoid native dependency #1142 @kyleamathews
32+
* Fix Appveyor bug regarding build all examples on release #1118 @jbolda
33+
34+
335
## [1.0.0-alpha20] - 2017-06-05
436

537
### Added

docs/tutorial/part-one.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Now type `cat package.json` and you should see that `gatsby` and `gatsby-link` a
5656
"author": "",
5757
"license": "ISC",
5858
"dependencies": {
59-
"gatsby": "^1.0.0-alpha19",
60-
"gatsby-link": "^1.0.0-alpha16"
59+
"gatsby": "^1.0.0-beta.1",
60+
"gatsby-link": "^1.0.0-beta.1"
6161
}
6262
}
6363
```

examples/client-only-paths/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
"version": "1.0.0",
66
"author": "Kyle Mathews <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-link": "canary",
10-
"gatsby-plugin-google-analytics": "canary",
11-
"gatsby-plugin-offline": "canary",
12-
"gatsby-source-drupal": "canary",
8+
"gatsby": "next",
9+
"gatsby-link": "next",
10+
"gatsby-plugin-google-analytics": "next",
11+
"gatsby-plugin-offline": "next",
12+
"gatsby-source-drupal": "next",
1313
"lodash": "^4.16.4",
1414
"react-addons-css-transition-group": "^15.5.2",
1515
"react-typography": "^0.15.0",

examples/feed/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "1.0.0",
66
"author": "Nicholas Young <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-source-filesystem": "canary",
10-
"gatsby-transformer-remark": "canary",
11-
"gatsby-plugin-feed": "canary"
8+
"gatsby": "next",
9+
"gatsby-source-filesystem": "next",
10+
"gatsby-transformer-remark": "next",
11+
"gatsby-plugin-feed": "next"
1212
},
1313
"keywords": [
1414
"gatsby"

examples/gatsbygram/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
"version": "1.0.0",
66
"author": "Kyle Mathews <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-link": "canary",
10-
"gatsby-plugin-glamor": "canary",
11-
"gatsby-plugin-google-analytics": "canary",
12-
"gatsby-plugin-manifest": "canary",
13-
"gatsby-plugin-offline": "canary",
14-
"gatsby-plugin-sharp": "canary",
15-
"gatsby-source-filesystem": "canary",
16-
"gatsby-transformer-json": "canary",
17-
"gatsby-transformer-sharp": "canary",
8+
"gatsby": "next",
9+
"gatsby-link": "next",
10+
"gatsby-plugin-glamor": "next",
11+
"gatsby-plugin-google-analytics": "next",
12+
"gatsby-plugin-manifest": "next",
13+
"gatsby-plugin-offline": "next",
14+
"gatsby-plugin-sharp": "next",
15+
"gatsby-source-filesystem": "next",
16+
"gatsby-transformer-json": "next",
17+
"gatsby-transformer-sharp": "next",
1818
"instagram-screen-scrape": "^2.0.0",
1919
"lodash": "^4.16.4",
2020
"mkdirp": "^0.5.1",

examples/hn/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"author": "Kyle Mathews <[email protected]>",
77
"dependencies": {
88
"flat": "^2.0.1",
9-
"gatsby": "canary",
10-
"gatsby-link": "canary",
11-
"gatsby-plugin-google-analytics": "canary",
12-
"gatsby-plugin-manifest": "canary",
13-
"gatsby-plugin-offline": "canary",
14-
"gatsby-source-hacker-news": "canary",
9+
"gatsby": "next",
10+
"gatsby-link": "next",
11+
"gatsby-plugin-google-analytics": "next",
12+
"gatsby-plugin-manifest": "next",
13+
"gatsby-plugin-offline": "next",
14+
"gatsby-source-hacker-news": "next",
1515
"lodash": "^4.16.4",
1616
"slash": "^1.0.0"
1717
},

examples/image-processing/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"version": "1.0.0",
66
"author": "Kyle Mathews <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-link": "canary",
10-
"gatsby-plugin-google-analytics": "canary",
11-
"gatsby-plugin-offline": "canary",
12-
"gatsby-plugin-sharp": "canary",
13-
"gatsby-source-drupal": "canary",
14-
"gatsby-source-filesystem": "canary",
15-
"gatsby-transformer-sharp": "canary",
8+
"gatsby": "next",
9+
"gatsby-link": "next",
10+
"gatsby-plugin-google-analytics": "next",
11+
"gatsby-plugin-offline": "next",
12+
"gatsby-plugin-sharp": "next",
13+
"gatsby-source-drupal": "next",
14+
"gatsby-source-filesystem": "next",
15+
"gatsby-transformer-sharp": "next",
1616
"react-typography": "^0.15.0",
1717
"typography": "^0.15.8",
1818
"typography-theme-bootstrap": "^0.15.10"

examples/no-plugins/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"version": "1.0.0",
66
"author": "Scotty Eckenthal <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-link": "canary",
8+
"gatsby": "next",
9+
"gatsby-link": "next",
1010
"lodash": "^4.16.4",
1111
"slash": "^1.0.0"
1212
},

examples/no-trailing-slashes/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"version": "1.0.0",
66
"author": "Scotty Eckenthal <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-link": "canary",
10-
"gatsby-plugin-google-analytics": "canary",
11-
"gatsby-plugin-offline": "canary",
8+
"gatsby": "next",
9+
"gatsby-link": "next",
10+
"gatsby-plugin-google-analytics": "next",
11+
"gatsby-plugin-offline": "next",
1212
"lodash": "^4.16.4",
1313
"slash": "^1.0.0"
1414
},

examples/redux/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"version": "1.0.0",
66
"author": "Scotty Eckenthal <[email protected]>",
77
"dependencies": {
8-
"gatsby": "canary",
9-
"gatsby-link": "canary",
8+
"gatsby": "next",
9+
"gatsby-link": "next",
1010
"lodash": "^4.16.4",
1111
"react-redux": "5.0.5",
1212
"react-router-redux": "4.0.8",

0 commit comments

Comments
 (0)