Skip to content

Commit 3c5f422

Browse files
authored
Merge pull request #11391 from ncoden/release/v6.5-rc.2
🚀 Release v6.5.0-rc.2
2 parents 397084a + ffab17c commit 3c5f422

File tree

169 files changed

+7168
-6750
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+7168
-6750
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
- [ ] There are no other pull request similar to this one.
3636
- [ ] The pull request title is descriptive.
3737
- [ ] The template is fully and correctly filled.
38-
- [ ] The pull request targets the right branch (`develop` or `support/*`).
38+
- [ ] The pull request targets the right branch (`develop` or `develop-v...`).
3939
- [ ] My commits are correctly titled and contain all relevant information.
4040
- [ ] My code follows the code style of this project.
4141
- [ ] I have updated the documentation accordingly to my changes (if relevant).

CONTRIBUTING.md

+12-8
Original file line numberDiff line numberDiff line change
@@ -55,27 +55,31 @@ After you made these checks, please follow these advices to create your pull req
5555
5. **Make sure that everything works and tests pass**.
5656
You must absolutely check that everything still works after your changes. Please also add tests for features you added or uncovered bugs you fixed. See the [Testing](https://github.com/zurb/foundation-sites#testing) section.
5757
6. **Create your pull request** ([link](https://github.com/zurb/foundation-sites/compare)).
58-
Make sure it targets the right branch: most often `develop`, unless you provide a fix for an older version and it should be `support/*`. Take a look at our [Git Workflow](#git-workflow) below.
58+
Make sure it targets the right branch: most often `develop`, unless you provide a fix for an older version and it should be `develop-v...`. Take a look at our [Git Workflow](#git-workflow) below.
5959

6060
When you submit a pull request, @mention a few people you’d like to help you review it. Once those people have signed off on it, the pull request can be merged! Core Team members will handle the merge itself.
6161

6262
## Git Workflow
6363

64-
Foundation uses a Git workflow close to the the successful [GitFlow](http://nvie.com/posts/a-successful-git-branching-model/) branching model, to which we added "support" branches to be able to release patches for older Foundation versions. Most of the time you will not have to care about this workflow and can simply open your pull request on `develop`.
64+
Foundation uses a Git workflow close to the the successful [GitFlow](http://nvie.com/posts/a-successful-git-branching-model/) branching model, to which we added `develop-v...` and `master-v...` branches to prepare and release patches for older Foundation versions. Most of the time you will not have to care about this workflow and can simply open your pull request on `develop`.
6565

6666
The workflow relies on three branches:
6767

68-
- **`master`**
68+
- **`develop`**
6969

70-
The stable branch. It only contains the latest stable version released. **Do NOT open pull requests on it**.
70+
Used to prepare the next minor/major version. It always contains all the new features and bug fixes, and is the most up-to-date version of Foundation. Almost every pull request should be opened on this branch (fixes, features, documentation...). When a new version is released, it is merged on `master`, a dedicated `develop-v...` branch is created, and `develop` now targets the next version.
7171

72-
- **`develop`**
72+
- **`develop-<version>`**
7373

74-
Used to prepare the next minor/major version. It always contains all the new features and bug fixes, and is the most up-to-date version of Foundation. Almost every pull request should be opened on this branch (fixes, features, documentation...). When a new version is released, it is merged on `master`, a support branch is created, and `develop` now targets the next version.
74+
Used to prepare patches for previous versions. For example: `develop-v6.5` to prepare the `v6.5.1` release. When a pull request for a bug fix is merged on `develop` and is compatible with supported versions, its commits must be added on the compatible `develop-v...` branches too. If a fix is not compatible with `develop`, a pull request can be opened on the latest compatible and supported `develop-v...` branch. When a new patch is released, it is merged on `master-v...` and `develop-v...` now targets the next patch for this minor version.
75+
76+
- **`master`**
77+
78+
The stable branch. It only contains the latest stable version released. **Do NOT open pull requests on it**.
7579

76-
- **`support/<version>`**
80+
- **`master-<version>`**
7781

78-
Used to support the previous versions (i.e. `support/v6.5` for `v6.5.0`) and prepare patches (i.e. `v6.5.1`). When a pull request for a bug fix is merged on `develop` and is compatible with supported versions, its commits must be added on the compatible `support/*` branches too. A patch version can be then released. If a fix is not compatible with `develop`, a pull request can be opened on the latest compatible and supported `support/*` branch.
82+
The stable branch for previous versions. For example: `master-v6.5` for stable `v6.5.*` releases. **Do NOT open pull requests on it**.
7983

8084
This git workflow was fully adopted as of `v6.5`, so `v6.4` and previous versions are not supported.
8185

bower.json

+56-13
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,73 @@
11
{
22
"name": "foundation-sites",
3-
"version": "6.5.0-rc.1",
3+
"version": "6.5.0-rc.2",
4+
"description": "The most advanced responsive front-end framework in the world.",
5+
"homepage": "http://foundation.zurb.com/sites",
46
"license": "MIT",
7+
"keywords": [
8+
"css",
9+
"scss",
10+
"sass",
11+
"js",
12+
"responsive",
13+
"mobile-first",
14+
"framework",
15+
"eyeglass-module"
16+
],
17+
"authors": [
18+
"ZURB <[email protected]> (http://foundation.zurb.com)"
19+
],
520
"main": [
621
"scss/foundation.scss",
722
"dist/js/foundation.js"
823
],
24+
"moduleType": [
25+
"globals",
26+
"amd",
27+
"node",
28+
"es6"
29+
],
30+
"repository": {
31+
"type": "git",
32+
"url": "https://github.com/zurb/foundation-sites"
33+
},
34+
"dependencies": {
35+
"jquery": ">=2.2.0",
36+
"what-input": ">=4.1.0"
37+
},
938
"ignore": [
10-
"config",
11-
"docs",
12-
"gulp",
13-
"lib",
14-
"test",
39+
".babelrc",
40+
".browserslistrc",
41+
".commitlintrc.yml",
42+
".editorconfig",
43+
".eslintrc",
44+
".huskyrc.yml",
45+
".jshintrc",
46+
".sass-lint.yml",
47+
".travis.yml",
48+
".versions",
49+
"bower.json",
50+
"browserstack.json",
51+
"code-of-conduct.md",
1552
"composer.json",
1653
"CONTRIBUTING.md",
54+
"docslink.sh",
1755
"gulpfile.js",
1856
"meteor-README.md",
1957
"package.js",
2058
"package.json",
59+
"package-lock.json",
2160
"sache.json",
22-
".editorconfig",
23-
".npm",
24-
".gitignore",
25-
".npmignore",
26-
".versions",
27-
".babelrc",
28-
"yarn.lock"
61+
"webpack.config.js",
62+
"yarn.lock",
63+
".github",
64+
"config",
65+
"customizer",
66+
"docs",
67+
"gulp",
68+
"lib",
69+
"spec",
70+
"script",
71+
"test"
2972
]
3073
}

dist/css/foundation-float.css

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-float.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-float.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-float.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-prototype.css

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-prototype.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-prototype.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-prototype.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-rtl.css

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-rtl.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-rtl.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation-rtl.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation.css

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/foundation.min.css.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)