Skip to content

Commit 6ff4e84

Browse files
authored
Bump development version to 0.8.0-dev
This is only an update to the development version and does not represent a stable release.
1 parent 08e111d commit 6ff4e84

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

Diff for: CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ The sections should follow the order `Packaging`, `Added`, `Changed`, `Fixed` an
55

66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77

8-
## 0.7.0-dev
8+
## 0.8.0-dev
9+
10+
## 0.7.0
911

1012
### Added
1113

Diff for: CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -122,12 +122,12 @@ back into master.
122122
The exact steps for an exemplary `0.2.0` release might look like this:
123123
1. Initially, the version on the latest master is `0.2.0-dev`
124124
2. A new `v0.2.0` branch is created for the release
125-
3. On master, the version is bumped to `0.3.0-dev`
125+
3. In the branch, the version is bumped to `0.2.0-rc1`
126+
4. The new commit in the branch is tagged as `v0.2.0-rc1`
127+
5. A GitHub release is created for the `v0.2.0-rc1` tag
128+
6. The changelog since the last release (stable or RC) is added to the GitHub release description
129+
7. On master, the version is bumped to `0.3.0-dev`
126130
and the `-dev` suffix is removed from the `0.2.0-dev` changelog
127-
4. In the branch, the version is bumped to `0.2.0-rc1`
128-
5. The new commit in the branch is tagged as `v0.2.0-rc1`
129-
6. A GitHub release is created for the `v0.2.0-rc1` tag
130-
7. The changelog since the last release (stable or RC) is added to the GitHub release description
131131
8. Bug fixes are cherry-picked from master into the branch and steps 4-7 are repeated until no
132132
major issues are found in the release candidates
133133
9. In the branch, the version is bumped to `0.2.0`

Diff for: alacritty/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "alacritty"
3-
version = "0.7.0-dev"
3+
version = "0.8.0-dev"
44
authors = ["Christian Duerr <[email protected]>", "Joe Wilm <[email protected]>"]
55
license = "Apache-2.0"
66
description = "A fast, cross-platform, OpenGL terminal emulator"
@@ -10,7 +10,7 @@ edition = "2018"
1010

1111
[dependencies.alacritty_terminal]
1212
path = "../alacritty_terminal"
13-
version = "0.11.1-dev"
13+
version = "0.12.1-dev"
1414
default-features = false
1515

1616
[dependencies.alacritty_config_derive]

Diff for: alacritty_terminal/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "alacritty_terminal"
3-
version = "0.11.1-dev"
3+
version = "0.12.1-dev"
44
authors = ["Christian Duerr <[email protected]>", "Joe Wilm <[email protected]>"]
55
license = "Apache-2.0"
66
description = "Library for writing terminal emulators"

Diff for: extra/alacritty.man

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH ALACRITTY "1" "August 2018" "alacritty 0.7.0-dev" "User Commands"
1+
.TH ALACRITTY "1" "August 2018" "alacritty 0.8.0-dev" "User Commands"
22
.SH NAME
33
Alacritty \- A fast, cross-platform, OpenGL terminal emulator
44
.SH "SYNOPSIS"

Diff for: extra/osx/Alacritty.app/Contents/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.7.0-dev</string>
18+
<string>0.8.0-dev</string>
1919
<key>CFBundleSupportedPlatforms</key>
2020
<array>
2121
<string>MacOSX</string>

Diff for: extra/windows/wix/alacritty.wxs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="windows-1252"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
3-
<Product Name="Alacritty" Id="*" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.7.0-dev" Manufacturer="Alacritty">
3+
<Product Name="Alacritty" Id="*" UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a7" Language="1033" Codepage="1252" Version="0.8.0-dev" Manufacturer="Alacritty">
44
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/>
55
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed."/>
66
<Icon Id="AlacrittyIco" SourceFile=".\extra\windows\alacritty.ico"/>

0 commit comments

Comments
 (0)