Skip to content

Commit

Permalink
Release Midori 7.0 (#198)
Browse files Browse the repository at this point in the history
- Bump to 7.0
- Updated `ChangeLog`
- Updated release steps in `README.md` to include tarball prefix

Fixes: #150
  • Loading branch information
kalikiana authored Nov 30, 2018
1 parent 7fce598 commit 69d2701
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ add_definitions("-DGETTEXT_PACKAGE=\"${GETTEXT_PACKAGE}\"")
project(${GETTEXT_PACKAGE} C)
set(PROJECT_BUGS https://github.com/midori-browser/core/issues)
set(PROJECT_WEBSITE https://www.midori-browser.org)
set(CORE_VERSION 6.0)
set(CORE_VERSION 7.0)

execute_process(COMMAND "git" "describe" "--tags"
OUTPUT_VARIABLE REVISION
Expand Down
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
v7.0
Fixed YouTube rendering issue due to custom user agent
Fixed invisible cursor in text fields
Restored behavior of " " and "." in urlbar completion
Download/ web notifications for background window/ tab
Highlight in toolbar for finished downloads
Re-introduced proxy server UX
Multiple processes for indivdual tabs
Adaptive toolbar layout for smaller screens

v6.0
Revamped Vala-only core based on GTK+3 and WebKit2
App based on Gtk.Application, supporting global/ window app menu
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,13 @@ You'll want to **unit test** the code if you're testing a new version or contrib

# Release process

Update `CORE_VERSION` in `CMakeLists.txt` to `6.0`.
Update `CORE_VERSION` in `CMakeLists.txt` to `7.0`.
Add a section to `ChangeLog`.

git commit -p -v -m "Release Midori 6.0"
git checkout -B release-6.0
git commit -p -v -m "Release Midori 7.0"
git checkout -B release-7.0
git push origin HEAD
git archive -o midori-v6.0.tar.gz -9 HEAD
git archive --prefix=midori-v7.0/ -o midori-v7.0.tar.gz -9 HEAD

Propose a PR for the release.
Publish the release on https://github.com/midori-browser/core/releases
Expand Down

0 comments on commit 69d2701

Please sign in to comment.