Skip to content

Commit

Permalink
docs: Further improve Release docs (#9925)
Browse files Browse the repository at this point in the history
* docs: Further improve Release docs

Includes proposal of a new versioning scheme and more accurate representation
of the release candidate process.

* docs: Tidy up headers
  • Loading branch information
tofumatt committed Oct 17, 2018
1 parent dad3140 commit 2165f84
Show file tree
Hide file tree
Showing 4 changed files with 149 additions and 77 deletions.
9 changes: 1 addition & 8 deletions bin/build-plugin-zip.sh
Expand Up @@ -44,19 +44,12 @@ if [ ! -z "$changed" ]; then
exit 1
fi

branch="$(git rev-parse --abbrev-ref HEAD)"
if [ "$branch" != 'master' ]; then
warning "WARNING: You should probably be running this script against the
'master' branch (current: '$branch')"
sleep 2
fi

# Do a dry run of the repository reset. Prompting the user for a list of all
# files that will be removed should prevent them from losing important files!
status "Resetting the repository to pristine condition. ✨"
git clean -xdf --dry-run
warning "🚨 About to delete everything above! Is this okay? 🚨"
echo -n "[Y]es/[N]o: "
echo -n "[y]es/[N]o: "
read answer
if [ "$answer" != "${answer#[Yy]}" ]; then
# Remove ignored files to reset repository to pristine condition. Previous
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/deprecated.md
@@ -1,4 +1,4 @@
Gutenberg's deprecation policy is intended to support backwards-compatibility for two minor releases, when possible. The current deprecations are listed below and are grouped by _the version at which they will be removed completely_. If your plugin depends on these behaviors, you must update to the recommended alternative before the noted version.
Gutenberg's deprecation policy is intended to support backwards-compatibility for releases, when possible. The current deprecations are listed below and are grouped by _the version at which they will be removed completely_. If your plugin depends on these behaviors, you must update to the recommended alternative before the noted version.

# 4.3.0

Expand Down
Binary file added docs/reference/release-screenshot.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2165f84

Please sign in to comment.