Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Release] Prepare release of v2.8.4
  • Loading branch information
bugwelle committed Jan 9, 2021
1 parent 88cb587 commit 28805a9
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Expand Up @@ -24,8 +24,8 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**MediaElch Version:**
- [ ] 2.8.3-dev (nightly)
- [ ] 2.8.2 stable
- [ ] 2.8.5-dev (nightly)
- [ ] 2.8.4 stable
<!-- older stable versions are not supported; please update -->

**Operating System:**
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/scraper-does-not-work.md
Expand Up @@ -24,8 +24,8 @@ assignees: ''
Add a list of information that is not loaded correctly.

**MediaElch Version:**
- [ ] 2.8.3-dev (nightly)
- [ ] 2.8.2 stable
- [ ] 2.8.5-dev (nightly)
- [ ] 2.8.4 stable

**Operating System:**
- [ ] Windows
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## 2.8.3 - tbd
## 2.8.4 - Coridian (2021-01-09)

### Bugfixes

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -9,7 +9,7 @@ cmake_minimum_required(VERSION 3.13.0 FATAL_ERROR)

project(
mediaelch
VERSION 2.8.3
VERSION 2.8.4
DESCRIPTION "Media Manager for Kodi"
HOMEPAGE_URL "https://mediaelch.github.io/"
)
Expand Down
6 changes: 3 additions & 3 deletions MediaElch.plist
Expand Up @@ -7,11 +7,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleGetInfoString</key>
<string>2.8.3</string>
<string>2.8.4</string>
<key>CFBundleVersion</key>
<string>2.8.3</string>
<string>2.8.4</string>
<key>CFBundleShortVersionString</key>
<string>2.8.3</string>
<string>2.8.4</string>
<key>CFBundleExecutable</key>
<string>MediaElch</string>
<key>CFBundleHelpBookFolder</key>
Expand Down
4 changes: 2 additions & 2 deletions Version.h
Expand Up @@ -9,8 +9,8 @@ namespace mediaelch {
namespace constants {

constexpr char AppName[] = "MediaElch";
constexpr char AppVersionStr[] = "2.8.3"; // major.minor.patch
constexpr char AppVersionFullStr[] = "2.8.3-dev"; // major.minor.patch-identifier
constexpr char AppVersionStr[] = "2.8.4"; // major.minor.patch
constexpr char AppVersionFullStr[] = "2.8.4"; // major.minor.patch-identifier
constexpr char VersionName[] = "Coridian";
constexpr char OrganizationName[] = "kvibes";

Expand Down
8 changes: 4 additions & 4 deletions docs/admin/release.md
Expand Up @@ -47,10 +47,10 @@ they should have been added right with the corresponding commits.
But better check all commit messages since the last version tag:

```sh
# Print all commits between the git tag v2.8.3 and the current master branch
git log --oneline v2.8.3..master
# Print all commits between the git tag v2.8.4 and the current master branch
git log --oneline v2.8.4..master
# Count the number of commits since the last version
git log --oneline v2.8.3..master | wc -l
git log --oneline v2.8.4..master | wc -l
```


Expand Down Expand Up @@ -87,7 +87,7 @@ add a Git tag (see next section), it includes the latest documentation state.
1. Commit your changes (MediaElch version and changelogs).
2. Add a version tag and push your changes

- `git tag -a v2.6.6 -m "MediaElch Version 2.6.6"`
- `git tag -a v2.8.4 -m "MediaElch Version 2.8.4"`
- `git push origin master`
- `git push --tags`

Expand Down
2 changes: 1 addition & 1 deletion obs/MediaElch.spec
Expand Up @@ -3,7 +3,7 @@
#

Name: MediaElch
Version: 2.8.3
Version: 2.8.4
Release: 1%{?dist}
License: LGPL-2.1+
Summary: A Media Manager for Kodi
Expand Down
2 changes: 1 addition & 1 deletion obs/README.md
Expand Up @@ -65,7 +65,7 @@ osc commit
```sh
rm MediaElch-*.tar.gz

export ME_VERSION=2.8.3
export ME_VERSION=2.8.4
# Clone latest version.
git clone https://github.com/Komet/MediaElch.git MediaElch
cd MediaElch
Expand Down

0 comments on commit 28805a9

Please sign in to comment.