Skip to content

Commit

Permalink
Updated version information to 1.8.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
KimonHoffmann committed Feb 14, 2019
1 parent 0e23feb commit a763f76
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.9 FATAL_ERROR)
project(ember-plus VERSION 1.7.0)
project(ember-plus VERSION 1.8.0)

add_subdirectory(libs101)
add_subdirectory(libformula)
Expand Down
2 changes: 1 addition & 1 deletion EmberLib.net/BerLib/Properties/EmberLib.AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.0.0")]
[assembly: AssemblyVersion("1.8.0.0")]
2 changes: 1 addition & 1 deletion EmberLib.net/EmberLib.Glow.Formula/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module internal EmberLib.Glow.Formula.AssemblyInfo

open System.Reflection

[<AssemblyVersion("1.7.0.0")>]
[<AssemblyVersion("1.8.0.0")>]
[<AssemblyTitle("EmberLib.Glow.Formula")>]
[<AssemblyCompany("Lawo GmbH")>]
[<AssemblyCopyright("(c) Lawo GmbH")>]
Expand Down
2 changes: 1 addition & 1 deletion libember/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ cmake_policy(SET CMP0063 NEW)
# Allow interprocedural optimization
cmake_policy(SET CMP0069 NEW)

project(libember VERSION 1.7.0 LANGUAGES CXX)
project(libember VERSION 1.8.0 LANGUAGES CXX)

# Use GNUInstallDirs to make sure libraries are installed into correct locations
# on all platforms.
Expand Down
4 changes: 2 additions & 2 deletions libember/Headers/ember/Version.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
libember -- C++ 03 implementation of the Ember+ Protocol
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
Expand All @@ -20,7 +20,7 @@ namespace libember
{
#ifndef LIBEMBER_HEADER_ONLY
LIBEMBER_API
LIBEMBER_EXTERN
LIBEMBER_EXTERN
char const* const versionString;
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion libember_slim/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cmake_policy(SET CMP0063 NEW)
# Allow interprocedural optimization
cmake_policy(SET CMP0069 NEW)

project(libember_slim VERSION 1.7.0 LANGUAGES C)
project(libember_slim VERSION 1.8.0 LANGUAGES C)

# Use GNUInstallDirs to make sure libraries are installed into correct locations
# on all platforms.
Expand Down
4 changes: 2 additions & 2 deletions libember_slim/Source/ember.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
libember_slim -- ANSI C implementation of the Ember+ Protocol
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
Expand All @@ -25,7 +25,7 @@
* The upper byte is the major version number.
* The lower byte is the minor version number.
*/
#define EMBER_ENCODING_VERSION (0x0107)
#define EMBER_ENCODING_VERSION (0x0150)


// ====================================================================
Expand Down
2 changes: 1 addition & 1 deletion libformula/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cmake_policy(SET CMP0063 NEW)
# Allow interprocedural optimization
cmake_policy(SET CMP0069 NEW)

project(libformula VERSION 1.7.0 LANGUAGES CXX)
project(libformula VERSION 1.8.0 LANGUAGES CXX)

# Use GNUInstallDirs to make sure libraries are installed into correct locations
# on all platforms.
Expand Down
4 changes: 2 additions & 2 deletions libformula/Headers/formula/Version.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
Expand All @@ -8,7 +8,7 @@
#define __LIBFORMULA_VERSION_HPP

#define LIBFORMULA_VERSION_MAJOR 1
#define LIBFORMULA_VERSION_MINOR 7
#define LIBFORMULA_VERSION_MINOR 8
#define LIBFORMULA_VERSION_REVISION 0

#endif // __LIBFORMULA_VERSION_HPP
Expand Down
2 changes: 1 addition & 1 deletion libs101/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cmake_policy(SET CMP0063 NEW)
# Allow interprocedural optimization
cmake_policy(SET CMP0069 NEW)

project(libs101 VERSION 1.7.0 LANGUAGES CXX)
project(libs101 VERSION 1.8.0 LANGUAGES CXX)

# Use GNUInstallDirs to make sure libraries are installed into correct locations
# on all platforms.
Expand Down
Binary file modified tinyember/TinyEmberPlus/TinyEmberPlus.rc
Binary file not shown.
4 changes: 2 additions & 2 deletions tinyember/TinyEmberPlusRouter/TinyEmberPlusRouter/main.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (C) 2012-2016 Lawo GmbH (http://www.lawo.com).
Copyright (C) 2012-2019 Lawo GmbH (http://www.lawo.com).
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
Expand All @@ -12,7 +12,7 @@
#include "glow/Dispatcher.h"


#define VERSION_STRING "1.5.1"
#define VERSION_STRING "1.8.0"
#define TCP_PORT 9092

// =====================================================
Expand Down

0 comments on commit a763f76

Please sign in to comment.