Skip to content

Commit e809eff

Browse files
committed
release 1.52.0
1 parent 7ad8065 commit e809eff

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.8)
22

33
project(espeak-ng
4-
VERSION 1.52.0.1
4+
VERSION 1.52.0
55
DESCRIPTION "open source speech synthesizer that supports more than hundred languages and accents"
66
HOMEPAGE_URL "https://github.com/espeak-ng/espeak-ng"
77
)

ChangeLog.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,20 @@
77

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

10-
### 1.52 (In Development)
10+
### 1.52.0
1111

12-
* Add stress marks to phoneme events (Rotem Dan)
12+
attention! this is the last release witch support the autoconf build system. use cmake to compile espeak-ng.
13+
14+
15+
* added cmake build system -- djphoenix
16+
* Added stress marks to phoneme events -- Rotem Dan
17+
18+
bug fixes:
19+
* a meny fixes to core C code -- djphoenix
1320

1421
android:
1522
* Added directBoot support -- beqabeqa473
23+
* Integrated ndk-build step into main gradle pipeline
1624

1725
updated languages:
1826
* ba (Bashkir) -- Andiv06

android/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:versionCode="20"
4-
android:versionName="1.52-dev" >
3+
android:versionCode="22"
4+
android:versionName="1.52.0" >
55

66
<uses-feature
77
android:name="android.hardware.touchscreen"

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ android {
3939
minSdk 21
4040
targetSdk 33
4141
versionCode 22
42-
versionName "1.52-dev"
42+
versionName "1.52.0"
4343

4444
externalNativeBuild {
4545
cmake {

android/jni/include/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This is created by autoconf on POSIX-compatibe build environments.
2-
#define PACKAGE_VERSION "1.52-dev"
2+
#define PACKAGE_VERSION "1.52.0"

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.63])
2-
AC_INIT([eSpeak NG], [1.52-dev], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng])
2+
AC_INIT([eSpeak NG], [1.52.0], [https://github.com/espeak-ng/espeak-ng/issues], [espeak-ng], [https://github.com/espeak-ng/espeak-ng])
33
AM_INIT_AUTOMAKE()
44
LT_INIT
55

src/windows/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
#define _CRT_NONSTDC_NO_DEPRECATE
1010

1111
// This is created by autoconf on POSIX-compatibe build environments.
12-
#define PACKAGE_VERSION "1.52-dev"
12+
#define PACKAGE_VERSION "1.52.0"

0 commit comments

Comments
 (0)