Skip to content

Commit a763f76

Browse files
committed
Updated version information to 1.8.0.
1 parent 0e23feb commit a763f76

File tree

12 files changed

+15
-15
lines changed

12 files changed

+15
-15
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
2-
project(ember-plus VERSION 1.7.0)
2+
project(ember-plus VERSION 1.8.0)
33

44
add_subdirectory(libs101)
55
add_subdirectory(libformula)

EmberLib.net/BerLib/Properties/EmberLib.AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
// You can specify all the values or you can default the Build and Revision Numbers
2525
// by using the '*' as shown below:
2626
// [assembly: AssemblyVersion("1.0.*")]
27-
[assembly: AssemblyVersion("1.7.0.0")]
27+
[assembly: AssemblyVersion("1.8.0.0")]

EmberLib.net/EmberLib.Glow.Formula/AssemblyInfo.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module internal EmberLib.Glow.Formula.AssemblyInfo
88

99
open System.Reflection
1010

11-
[<AssemblyVersion("1.7.0.0")>]
11+
[<AssemblyVersion("1.8.0.0")>]
1212
[<AssemblyTitle("EmberLib.Glow.Formula")>]
1313
[<AssemblyCompany("Lawo GmbH")>]
1414
[<AssemblyCopyright("(c) Lawo GmbH")>]

libember/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cmake_policy(SET CMP0063 NEW)
1717
# Allow interprocedural optimization
1818
cmake_policy(SET CMP0069 NEW)
1919

20-
project(libember VERSION 1.7.0 LANGUAGES CXX)
20+
project(libember VERSION 1.8.0 LANGUAGES CXX)
2121

2222
# Use GNUInstallDirs to make sure libraries are installed into correct locations
2323
# on all platforms.

libember/Headers/ember/Version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
libember -- C++ 03 implementation of the Ember+ Protocol
33
4-
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
55
Distributed under the Boost Software License, Version 1.0.
66
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77
*/
@@ -20,7 +20,7 @@ namespace libember
2020
{
2121
#ifndef LIBEMBER_HEADER_ONLY
2222
LIBEMBER_API
23-
LIBEMBER_EXTERN
23+
LIBEMBER_EXTERN
2424
char const* const versionString;
2525
#endif
2626
}

libember_slim/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cmake_policy(SET CMP0063 NEW)
1414
# Allow interprocedural optimization
1515
cmake_policy(SET CMP0069 NEW)
1616

17-
project(libember_slim VERSION 1.7.0 LANGUAGES C)
17+
project(libember_slim VERSION 1.8.0 LANGUAGES C)
1818

1919
# Use GNUInstallDirs to make sure libraries are installed into correct locations
2020
# on all platforms.

libember_slim/Source/ember.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
libember_slim -- ANSI C implementation of the Ember+ Protocol
33
4-
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
4+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
55
Distributed under the Boost Software License, Version 1.0.
66
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
77
*/
@@ -25,7 +25,7 @@
2525
* The upper byte is the major version number.
2626
* The lower byte is the minor version number.
2727
*/
28-
#define EMBER_ENCODING_VERSION (0x0107)
28+
#define EMBER_ENCODING_VERSION (0x0150)
2929

3030

3131
// ====================================================================

libformula/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_policy(SET CMP0063 NEW)
1111
# Allow interprocedural optimization
1212
cmake_policy(SET CMP0069 NEW)
1313

14-
project(libformula VERSION 1.7.0 LANGUAGES CXX)
14+
project(libformula VERSION 1.8.0 LANGUAGES CXX)
1515

1616
# Use GNUInstallDirs to make sure libraries are installed into correct locations
1717
# on all platforms.

libformula/Headers/formula/Version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
2+
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
33
Distributed under the Boost Software License, Version 1.0.
44
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
55
*/
@@ -8,7 +8,7 @@
88
#define __LIBFORMULA_VERSION_HPP
99

1010
#define LIBFORMULA_VERSION_MAJOR 1
11-
#define LIBFORMULA_VERSION_MINOR 7
11+
#define LIBFORMULA_VERSION_MINOR 8
1212
#define LIBFORMULA_VERSION_REVISION 0
1313

1414
#endif // __LIBFORMULA_VERSION_HPP

libs101/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cmake_policy(SET CMP0063 NEW)
1111
# Allow interprocedural optimization
1212
cmake_policy(SET CMP0069 NEW)
1313

14-
project(libs101 VERSION 1.7.0 LANGUAGES CXX)
14+
project(libs101 VERSION 1.8.0 LANGUAGES CXX)
1515

1616
# Use GNUInstallDirs to make sure libraries are installed into correct locations
1717
# on all platforms.

0 commit comments

Comments
 (0)