Skip to content

Commit 22b6b04

Browse files
committed
Prepare release of version 1.1.3
1 parent eeecaaa commit 22b6b04

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ dist: xenial
1111

1212
jobs:
1313
include:
14-
- dist: xenial
15-
compiler: gcc
16-
env: WXGTK_PACKAGE=libwxgtk3.0-dev
14+
# - dist: xenial
15+
# compiler: gcc
16+
# env: WXGTK_PACKAGE=libwxgtk3.0-dev
1717
- dist: xenial
1818
compiler: gcc
1919
env: WXGTK_PACKAGE=libwxgtk3.0-dev

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Copyright (C) 2019-2020 Ulrich Telle <[email protected]>
44
dnl
55
dnl This file is covered by the same licence as the entire SQLite3 Multiple Ciphers package.
66

7-
AC_INIT([sqlite3mc], [1.1.2], [[email protected]])
7+
AC_INIT([sqlite3mc], [1.1.3], [[email protected]])
88

99
dnl This is the version tested with, might work with earlier ones.
1010
AC_PREREQ([2.69])

readme.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ The code was mainly developed under Windows, but was tested under Linux as well.
1212

1313
## Version history
1414

15+
* 1.1.3 - *December 2020*
16+
- Added code for AES hardware support on ARM platforms
17+
- Added GitHub Actions for CI
1518
* 1.1.2 - *December 2020*
1619
- Fixed a bug on cipher configuration via PRAGMA commands or URI parameters
1720
- Added SQLite3 Multple Ciphers version info to shell application

src/sqlite3mc_version.h

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

1515
#define SQLITE3MC_VERSION_MAJOR 1
1616
#define SQLITE3MC_VERSION_MINOR 1
17-
#define SQLITE3MC_VERSION_RELEASE 2
17+
#define SQLITE3MC_VERSION_RELEASE 3
1818
#define SQLITE3MC_VERSION_SUBRELEASE 0
19-
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.1.2"
19+
#define SQLITE3MC_VERSION_STRING "SQLite3 Multiple Ciphers 1.1.3"
2020

2121
#endif /* SQLITE3MC_VERSION_H_ */

0 commit comments

Comments
 (0)