Skip to content

Commit

Permalink
Release 1.51
Browse files Browse the repository at this point in the history
  • Loading branch information
valdisvi committed Apr 2, 2022
1 parent 6fd31db commit 2e9a5fc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

The espeak-ng project is a fork of the espeak project.

### 1.51 (In Development)
### 1.51

* Add support for speechPlayer.
* Add more tests to check the various parts of espeak-ng.
Expand Down
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reecedunn.espeak"
android:versionCode="20"
android:versionName="1.51-dev" >
android:versionName="1.51" >

<uses-feature
android:name="android.hardware.touchscreen"
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
minSdkVersion 14
targetSdkVersion 26
versionCode 20
versionName "1.51-dev"
versionName "1.51"
}

sourceSets {
Expand Down
2 changes: 1 addition & 1 deletion android/jni/include/config.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This is created by autoconf on POSIX-compatibe build environments.
#define PACKAGE_VERSION "1.51-dev"
#define PACKAGE_VERSION "1.51"
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.63])
AC_INIT([eSpeak NG], [1.51-dev], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng])
AC_INIT([eSpeak NG], [1.51], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng])
AM_INIT_AUTOMAKE()
LT_INIT

Expand Down
2 changes: 1 addition & 1 deletion src/windows/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
#define _CRT_NONSTDC_NO_DEPRECATE

// This is created by autoconf on POSIX-compatibe build environments.
#define PACKAGE_VERSION "1.51-dev"
#define PACKAGE_VERSION "1.51"

5 comments on commit 2e9a5fc

@sthibaul
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mmm, the generated tarball does not contain e.g. espeak-ng/tests/ssml-fuzzer/ because they are not recorded as dist files in Makefile.am

@valdisvi
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it needed? E.g. in Maven projects they have different folders main and test, and for production only content of the main folder is packaged.

@sthibaul
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In Debian we make more and more Continuous Integration runs on libraries upgrades etc., so having all the tests files is more than welcome. I'll be picking the git tag tarball to have them.

@valdisvi
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK. When I need to get something from source, I'm happy that it just compiles...

@sthibaul
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Well, when a user has troubles on a platform (e.g. arm, risc-V etc.) it can be very useful for him to run the testsuite.

Please sign in to comment.