Skip to content

Commit 99d2919

Browse files
committed
chore: v2.0.6
1 parent a36ac17 commit 99d2919

File tree

4 files changed

+45
-43
lines changed

4 files changed

+45
-43
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Pure Change History
22
===================
33

4+
2.0.6 (2021-04-28)
5+
------------------
6+
7+
* chore: update to cssmin@4
8+
49
2.0.5 (2021-01-20)
510
------------------
611

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,13 @@ A set of small, responsive CSS modules that you can use in every web project.
77
[http://purecss.io/][Pure]
88

99
[![Build Status](http://img.shields.io/travis/pure-css/pure.svg?style=flat)][Build Status]
10-
[![Dependency Status](https://david-dm.org/pure-css/pure/dev-status.svg)](https://david-dm.org/pure-css/pure?type=dev)
1110
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/pure-css/pure?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1211

1312
**This project is looking for maintainers to support and enhance Pure.css. If you are interested please [leave a comment](https://github.com/pure-css/pure/issues/692) in the Github issue.**
1413

1514
[Pure]: http://purecss.io/
1615
[Build Status]: https://travis-ci.com/pure-css/pure
1716

18-
1917
Features
2018
--------
2119

RELEASE.md

Lines changed: 36 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -14,92 +14,89 @@ This assumes the following repo's are cloned and `npm` installed:
1414

1515
- [ ] **Update local Pure to latest from pure-css/pure#master**
1616

17-
```
18-
$ cd pure/
19-
$ git pull upstream master
20-
```
17+
```bash
18+
$ cd pure/
19+
$ git pull upstream master
20+
```
2121

2222
- [ ] **Build Pure via `grunt`**
2323

24-
```
25-
$ grunt
26-
```
24+
```bash
25+
$ grunt
26+
```
2727

2828
- [ ] **Review all src/.../tests/manual/ files in target environments, including:**
2929

30-
- [ ] IE 11
31-
- [ ] Edge
32-
- [ ] Chrome
33-
- [ ] Firefox
34-
- [ ] Safari
35-
- [ ] iOS 10.x
36-
- [ ] Android 4.x
37-
- [ ] Android 5.x
30+
- [ ] IE 11
31+
- [ ] Edge
32+
- [ ] Chrome
33+
- [ ] Firefox
34+
- [ ] Safari
35+
- [ ] iOS 10.x
36+
- [ ] Android 4.x
37+
- [ ] Android 5.x
3838

3939
- [ ] **Review pure-site in target environments with [Pure served locally](https://github.com/pure-css/pure-site/blob/master/README.md#running-with-pure-served-locally)**
4040

41-
- [ ] IE 11
42-
- [ ] Edge
43-
- [ ] Chrome
44-
- [ ] Firefox
45-
- [ ] Safari
46-
- [ ] iOS 10.x
47-
- [ ] Android 4.x
48-
- [ ] Android 5.x
41+
- [ ] IE 11
42+
- [ ] Edge
43+
- [ ] Chrome
44+
- [ ] Firefox
45+
- [ ] Safari
46+
- [ ] iOS 10.x
47+
- [ ] Android 4.x
48+
- [ ] Android 5.x
4949

5050
- [ ] **Review HISTORY.md**
5151

52-
https://github.com/pure-css/pure/blob/master/HISTORY.md
52+
https://github.com/pure-css/pure/blob/master/HISTORY.md
5353

54-
Make sure all the major changes since the last release of Pure are reflected in HISTORY.md entries.
54+
Make sure all the major changes since the last release of Pure are reflected in HISTORY.md entries.
5555

5656
## Prepare repos for release
5757

5858
### Pure repo
5959

6060
- [ ] **Bump versions**
6161

62-
It should have already been determined whether this is a minor or patch version release. Update Pure's version number to the new version in the following places. You'll likely be dropping a "-pre" suffix which was in place during the last development cycle. Do not use a "v" in the version (e.g., 1.0.0):
62+
It should have already been determined whether this is a minor or patch version release. Update Pure's version number to the new version in the following places. You'll likely be dropping a "-pre" suffix which was in place during the last development cycle. Do not use a "v" in the version (e.g., 1.0.0):
6363

64-
- [ ] package.json
65-
- [ ] HISTORY.md (Update "NEXT")
66-
- [ ] README.md (x2 CDN URLs)
64+
- [ ] package.json
65+
- [ ] HISTORY.md (Update "NEXT")
6766

6867
- [ ] **Build Pure release files via `grunt release`**
6968

70-
Using Grunt, create the release/[version]/pure-[version].tar.gz file:
69+
Using Grunt, create the release/[version]/pure-[version].tar.gz file:
7170

72-
```
73-
$ grunt release
74-
```
75-
76-
**Note:** If the build fails it's for a good reason, most likely because there's code which is not passing CSSLint. We should always fix these issues and never force a release.
71+
```bash
72+
$ grunt release
73+
```
7774

75+
**Note:** If the build fails it's for a good reason, most likely because there's code which is not passing CSSLint. We should always fix these issues and never force a release.
7876

7977
## Publish pure to NPM
8078

8179
From the `pure` repo run the following command to publish Pure to NPM. This will ensure `unpkg.com` CDN gets the new files.
8280

83-
```
81+
```bash
8482
npm publish .
8583
```
8684

8785
Verify via https://unpkg.com/purecss@VERSION
8886

89-
9087
## Draft releases on Github
9188

9289
- [ ] **Draft a new release on [GitHub](https://github.com/pure-css/pure/releases) for all three repos,** using "v" in the version number (e.g., v1.0.0). Drafts are invisible to the public. Once these are published, the repos will be visible, and they will be tagged. **Don't publish them just yet.**
9390

94-
- [ ] **pure**
91+
- [ ] **pure**
9592

9693
## Formally publish Pure
9794

9895
Now all our files are out there and everything is looking good.
9996

10097
- [ ] **Publish pure**
10198

102-
From the [pure repo](https://github.com/pure-css/pure/releases), publish the release. This will tag the repo and signal to the public that the new Pure release is complete.
99+
From the [pure repo](https://github.com/pure-css/pure/releases), publish the release. This will tag the repo and signal to the public that the new Pure release is complete.
103100

104101
## Spread the word
105102

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "purecss",
3-
"version": "2.0.5",
3+
"version": "2.0.6",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/pure-css/pure.git"
@@ -13,7 +13,9 @@
1313
"site:start": "cd site && npm run start",
1414
"test": "grunt test && tap test/*.js"
1515
},
16-
"files": ["build/"],
16+
"files": [
17+
"build/"
18+
],
1719
"devDependencies": {
1820
"autoprefixer": "^9.8.6",
1921
"eslint": "^7.18.0",

0 commit comments

Comments
 (0)