Browse Source

Set correct dependency in debian package and push version to 1.0

Stefan Profanter 4 years ago
parent
commit
ea6f481935
5 changed files with 10 additions and 11 deletions
  1. 3 3
      CMakeLists.txt
  2. 2 2
      debian/changelog
  3. 1 1
      debian/control
  4. 3 4
      debian/copyright
  5. 1 1
      doc/installing.rst

+ 3 - 3
CMakeLists.txt

@@ -32,8 +32,8 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)
 # Version #
 ###########
 
-set(OPEN62541_VER_MAJOR 0)
-set(OPEN62541_VER_MINOR 4)
+set(OPEN62541_VER_MAJOR 1)
+set(OPEN62541_VER_MINOR 0)
 set(OPEN62541_VER_PATCH 0)
 set(OPEN62541_VER_LABEL "-dev") # Appended to the X.Y.Z version format. For example "-rc1" or an empty string
 
@@ -1110,7 +1110,7 @@ set(open62541_install_nodeset_dir share/open62541/tools/ua-nodeset)
 
 # This list of components allows to define a find_package requirement.
 # E.g.:
-# find_package(open62541 0.4.0 REQUIRED COMPONENTS Events Methods FullNamespace)
+# find_package(open62541 1.0.0 REQUIRED COMPONENTS Events Methods FullNamespace)
 set(open62541_enabled_components "")
 if(UA_NAMESPACE_ZERO STREQUAL "FULL")
     list(APPEND open62541_enabled_components "FullNamespace")

+ 2 - 2
debian/changelog

@@ -1,5 +1,5 @@
-open62541 (0.4) UNRELEASED; urgency=low
+open62541 (1.0) UNRELEASED; urgency=low
 
   * Initial Release.
 
- -- open62541 Team <open62541-core@googlegroups.com>  Tue, 18 Dec 2018 10:51:28 +0100
+ -- open62541 Team <open62541-core@googlegroups.com>  Fri, 19 Jul 2019 10:51:28 +0100

+ 1 - 1
debian/control

@@ -31,6 +31,6 @@ Package: open62541-dbg
 Section: debug
 Architecture: any
 Priority: extra
-Depends: librl (= ${binary:Version}), ${misc:Depends}
+Depends: open62541 (= ${binary:Version}), ${misc:Depends}
 Description: Debugging symbols for open62541
  open62541 is an open source C (C99) implementation of the OPC UA standard

+ 3 - 4
debian/copyright

@@ -4,12 +4,11 @@ Upstream-Contact: open62541 Team <open62541-core@googlegroups.com>
 Source: https://open62541.org/
 
 Files: *
-Copyright: <years> <put author's name and email here>
-           <years> <likewise for another author>
-License: GPL-3.0+
+Copyright: 2019 open62541 Team <open62541-core@googlegroups.com>
+License: MPL-2.0
 
 Files: debian/*
-Copyright: 2018 open62541 Team <open62541-core@googlegroups.com>
+Copyright: 2019 open62541 Team <open62541-core@googlegroups.com>
 License: MPL-2.0
 
 License: MPL-2.0

+ 1 - 1
doc/installing.rst

@@ -49,7 +49,7 @@ In your own CMake project you can then include the open62541 library using:
 .. code-block:: cmake
 
    # optionally you can also specify a specific version
-   # e.g. find_package(open62541 0.4.0)
+   # e.g. find_package(open62541 1.0.0)
    find_package(open62541 REQUIRED COMPONENTS Events FullNamespace)
    add_executable(main main.cpp)
    target_link_libraries(main open62541::open62541)