Skip to content

Commit fa53a13

Browse files
author
Kylie Stewart
committed
Changes for v6.0.3
1 parent 05bb954 commit fa53a13

File tree

2 files changed

+39
-20
lines changed

2 files changed

+39
-20
lines changed

CHANGELOG.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
# Changelog
22

3-
## Unreleased
3+
## 6.0.3 (05-11-2020)
44

5+
- Fix keyboard toggles for both MacOS and Windows.
6+
[#893](https://github.com/FormidableLabs/spectacle/pull/893)
7+
- Documentation updates.
8+
[#894](https://github.com/FormidableLabs/spectacle/pull/894)
59
- Add support for mobile navigation of slides.
610
[#876](https://github.com/FormidableLabs/spectacle/pull/876)
711

8-
## 6.0.2
12+
## 6.0.2 (04-10-2020)
913

1014
- Allow for `props.fontSize` to override the theme's monospace font size in `CodePane`.
1115
[#875](https://github.com/FormidableLabs/spectacle/pull/875)
1216
- Surface `textDecoration` prop from styled-system for `Link`s.
1317
[#869](https://github.com/FormidableLabs/spectacle/pull/869)
1418

15-
## 6.0.1
19+
## 6.0.1 (03-18-2020)
1620

1721
- Fix broken doc links.
1822
[#859](https://github.com/FormidableLabs/spectacle/pull/859), [#862](https://github.com/FormidableLabs/spectacle/pull/862)
@@ -23,45 +27,45 @@
2327
- Fix nested Appears.
2428
[#864](https://github.com/FormidableLabs/spectacle/pull/864)
2529

26-
## 6.0.0
30+
## 6.0.0 (03-06-2020)
2731

2832
- Expand custom background support by adding `Background` props to the `Slide` component, along with `backgroundOpacity`.
2933
[#849](https://github.com/FormidableLabs/spectacle/pull/849)
3034
- Add `Stepper`, allowing for code range highlighting/scrolling within CodePane.
3135
[#843](https://github.com/FormidableLabs/spectacle/pull/843)
3236

33-
## 6.0.0-alpha.8
37+
## 6.0.0-alpha.8 (02-20-2020)
3438

3539
- Update `examples/one-page.html` to `examples/js/index.js` with new script helper.
3640
- Add support for Deck or Slide-level transitions.
3741
- Add default transitions for Fade, Slide, and None.
3842
- Fixes Full Screen component for Chrome/FF, adds support for Safari.
3943
- Added support for dual-browser tab mode for presenter mode in all browsers.
4044

41-
## 6.0.0-alpha.7
45+
## 6.0.0-alpha.7 (01-27-2020)
4246

4347
- Fix `one-page.html` closing tags.
4448

45-
## 6.0.0-alpha.6
49+
## 6.0.0-alpha.6 (01-27-2020)
4650

4751
- Fix `one-page.html` unpkg script links.
4852

49-
## 6.0.0-alpha.5
53+
## 6.0.0-alpha.5 (01-27-2020)
5054

5155
- Add color props support to Flex Box.
5256
[#816](https://github.com/FormidableLabs/spectacle/issues/816)
5357

54-
## 6.0.0-alpha.4
58+
## 6.0.0-alpha.4 (01-27-2020)
5559

5660
- Move around internal examples, and publish some for `spectacle-cli` usage.
5761
- Use top-center layout defaults for Spectacle. Drop `autoLayout` prop.
5862
- Add `border` styled-system props to `FlexBox` and `Box`.
5963

60-
## 6.0.0-alpha.3
64+
## 6.0.0-alpha.3 (11-04-2019)
6165

6266
- Fixes overflow issue for presenter mode in Chrome.
6367

64-
## 6.0.0-alpha.1
68+
## 6.0.0-alpha.1 (11-02-2019)
6569

6670
- First release of the Spectacle rewrite MVP.
6771
- Support for:

CONTRIBUTING.md

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,30 @@ ahead and submit a PR, make sure that you have done the following:
174174

175175
### Releasing a new version to NPM
176176

177-
_Only for project administrators_.
178-
179-
1. Update [`CHANGELOG.md`](./CHANGELOG.md), following format for previous versions
180-
2. Commit as "Changes for version VERSION"
181-
3. Run `npm version patch` (or `minor|major|VERSION`) to run tests and lint,
182-
build published directories, then update `package.json` + add a git tag.
183-
4. If all is well, run `npm publish` to publish to NPM.
184-
5. Run `git push && git push --tags` to publish to Github.
185-
6. Go and manually draft a release for your recently pushed tag with notes in the [Github UI](https://github.com/FormidableLabs/spectacle/releases/new).
177+
<details>
178+
<summary>
179+
<i>Only for project administrators</i>
180+
</summary>
181+
182+
```sh
183+
# (1) Update the Changelog, following format from previous versions
184+
# and commit those changes independently of other updates
185+
git add CHANGELOG.md && git commit -m "Changes for v<version>"
186+
187+
# (2) Run tests, lint, build published dir, update package.json
188+
$ npm version [patch|minor|major|<version>]
189+
190+
# (3) If all is well, publish the new version to the npm registry
191+
$ npm publish
192+
193+
# (4) Then, update github with the associated tag
194+
$ git push --tags
195+
```
196+
197+
Then, go and manually draft a release for your recently pushed tag with notes in
198+
the [Github UI](https://github.com/FormidableLabs/spectacle/releases/new).
199+
200+
</details>
186201

187202
## Contributor Covenant Code of Conduct
188203

0 commit comments

Comments
 (0)