Skip to content

Commit 47098b2

Browse files
committed
Bump patch version number for upcoming maintainence release.
1 parent 2a1c529 commit 47098b2

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

pipelines/debpkg.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
use strict;
44

5-
my $VERSION="2.6.0";
5+
my $VERSION="2.6.1";
66
my $INSTALL_PREFIX="/tmp/fceux";
77
my $CTL_FILENAME="$INSTALL_PREFIX/DEBIAN/control";
88
my $ARCH="amd64";

pipelines/macOS_build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ QT_MAJOR=5;
1010
QT_PKGNAME=qt$QT_MAJOR;
1111
FCEUX_VERSION_MAJOR=2
1212
FCEUX_VERSION_MINOR=6
13-
FCEUX_VERSION_PATCH=0
13+
FCEUX_VERSION_PATCH=1
1414
SDL2_VERSION=2.0.14
1515

1616
SCRIPT_DIR=$( cd $(dirname $BASH_SOURCE[0]); pwd );

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Interim builds:
88
* Win32: [fceux.zip](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux.zip?branch=master&job=Windows%2032)
99
* Win64: [fceux64.zip](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux64.zip?branch=master&job=Windows%2064)
1010
* Win64 Qt/SDL: [qfceux64.zip](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/qfceux64.zip?branch=master&job=Win64%20Qt)
11-
* Ubuntu: [fceux-2.6.0-amd64.deb](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.0-amd64.deb?branch=master&job=Ubuntu)
12-
* MacOSX: [fceux-2.6.0-Darwin.dmg](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.0-Darwin.dmg?branch=master&job=MacOS)
11+
* Ubuntu: [fceux-2.6.1-amd64.deb](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.1-amd64.deb?branch=master&job=Ubuntu)
12+
* MacOSX: [fceux-2.6.1-Darwin.dmg](https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.1-Darwin.dmg?branch=master&job=MacOS)
1313
* Status: [Appveyor](https://ci.appveyor.com/project/zeromus/fceux/)
1414

1515
But you might like mesen more: https://github.com/SourMesen/Mesen

src/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@
6262

6363
#define FCEU_VERSION_MAJOR 2
6464
#define FCEU_VERSION_MINOR 6
65-
#define FCEU_VERSION_PATCH 0
65+
#define FCEU_VERSION_PATCH 1
6666

6767
#define FCEU_VERSION_NUMERIC ( (FCEU_VERSION_MAJOR*10000) + (FCEU_VERSION_MINOR*100) + (FCEU_VERSION_PATCH) )
6868
#define FCEU_VERSION_MAJOR_DECODE(x) ( (x / 10000) )
6969
#define FCEU_VERSION_MINOR_DECODE(x) ( (x / 100) % 100 )
7070
#define FCEU_VERSION_PATCH_DECODE(x) (x % 100)
7171

72-
#define FCEU_VERSION_STRING "2.6.0" FCEU_SUBVERSION_STRING FCEU_FEATURE_STRING FCEU_COMPILER
72+
#define FCEU_VERSION_STRING "2.6.1" FCEU_SUBVERSION_STRING FCEU_FEATURE_STRING FCEU_COMPILER
7373
#define FCEU_NAME_AND_VERSION FCEU_NAME " " FCEU_VERSION_STRING
7474

7575
#endif

web/download.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ <h3>Download</h3>
8484
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux.zip?branch=master&job=Windows%2032">Windows 32-bit</a></li>
8585
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux64.zip?branch=master&job=Windows%2064">Windows 64-bit</a></li>
8686
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/qfceux64.zip?branch=master&job=Win64%20Qt">Win 64 Qt/SDL</a></li>
87-
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.0-amd64.deb?branch=master&job=Ubuntu">Ubuntu Linux</a></li>
88-
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.0-Darwin.dmg?branch=master&job=MacOS">Mac OS X</a></li>
87+
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.1-amd64.deb?branch=master&job=Ubuntu">Ubuntu Linux</a></li>
88+
<li><a href="https://ci.appveyor.com/api/projects/zeromus/fceux/artifacts/fceux-2.6.1-Darwin.dmg?branch=master&job=MacOS">Mac OS X</a></li>
8989
</ul>
9090

9191
<h3>Source Code</h3>

0 commit comments

Comments
 (0)