This is an automated email from the ASF dual-hosted git repository.

aldrin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new 3b3bf95  MINIFICPP-823: Change version numbers
3b3bf95 is described below

commit 3b3bf9594d878a75ab30fb1047e3844316a28637
Author: Marc Parisi <[email protected]>
AuthorDate: Thu Apr 25 13:45:21 2019 -0400

    MINIFICPP-823: Change version numbers
    
    This closes #545.
    
    Signed-off-by: Aldrin Piri <[email protected]>
---
 CMakeLists.txt         |  2 +-
 README.md              | 12 ++++++------
 conf/minifi.properties |  2 +-
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 890ab07..0b35539 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -21,7 +21,7 @@ cmake_minimum_required(VERSION 3.0)
 project(nifi-minifi-cpp)
 set(PROJECT_NAME "nifi-minifi-cpp")
 set(PROJECT_VERSION_MAJOR 0)
-set(PROJECT_VERSION_MINOR 6)
+set(PROJECT_VERSION_MINOR 7)
 set(PROJECT_VERSION_PATCH 0)
 
 include(CMakeDependentOption)
diff --git a/README.md b/README.md
index 4886e23..18ee178 100644
--- a/README.md
+++ b/README.md
@@ -84,7 +84,7 @@ Through JNI extensions you can run NiFi processors using 
NARs. The JNI extension
  Please see our [Python guide](extensions/script/README.md) on how to write 
Python processors and use them within MiNiFi C++. 
 
 ## Caveats
-* 0.5.0 represents a GA-release. We follow semver so you can expect API and 
ABI compatibility within minor releases. See [semver's 
website](https://semver.org/) for more information
+* 0.7.0 represents a GA-release. We follow semver so you can expect API and 
ABI compatibility within minor releases. See [semver's 
website](https://semver.org/) for more information
 * Build and usage currently only supports Linux and OS X environments. MiNiFi 
C++ can be built and run through the Windows Subsystem for Linux but we provide 
no support for this platform.
 * Native Windows builds are possible with limited support. OPENSSL_ROOT_DIR 
must be specified to support OpenSSL support within your build.
 * Provenance events generation is supported and are persisted using RocksDB. 
Volatile repositories can be used on systems without persistent storage.
@@ -415,7 +415,7 @@ advanced features.
   CPack: Install projects
   CPack: - Install directory: ~/Development/code/apache/nifi-minifi-cpp
   CPack: Create package
-  CPack: - package: 
~/Development/code/apache/nifi-minifi-cpp/build/nifi-minifi-cpp-0.6.0-bin.tar.gz
 generated.
+  CPack: - package: 
~/Development/code/apache/nifi-minifi-cpp/build/nifi-minifi-cpp-0.7.0-bin.tar.gz
 generated.
   ```
 
 - Create a source assembly located in your build directory with suffix 
-source.tar.gz
@@ -427,18 +427,18 @@ advanced features.
   CPack: Install projects
   CPack: - Install directory: ~/Development/code/apache/nifi-minifi-cpp
   CPack: Create package
-  CPack: - package: 
~/Development/code/apache/nifi-minifi-cpp/build/nifi-minifi-cpp-0.6.0-source.tar.gz
 generated.
+  CPack: - package: 
~/Development/code/apache/nifi-minifi-cpp/build/nifi-minifi-cpp-0.7.0-source.tar.gz
 generated.
   ```
 
 - (Optional) Create a Docker image from the resulting binary assembly output 
from "make package".
 ```
 ~/Development/code/apache/nifi-minifi-cpp/build
 $ make docker
-NiFi-MiNiFi-CPP Version: 0.6.0
+NiFi-MiNiFi-CPP Version: 0.7.0
 Current Working Directory: 
/Users/jdyer/Development/github/nifi-minifi-cpp/docker
 CMake Source Directory: /Users/jdyer/Development/github/nifi-minifi-cpp
-MiNiFi Package: nifi-minifi-cpp-0.6.0-bin.tar.gz
-Docker Command: 'docker build --build-arg UID=1000 --build-arg GID=1000 
--build-arg MINIFI_VERSION=0.6.0 --build-arg 
MINIFI_PACKAGE=nifi-minifi-cpp-0.6.0-bin.tar.gz -t apacheminificpp:0.6.0 .'
+MiNiFi Package: nifi-minifi-cpp-0.7.0-bin.tar.gz
+Docker Command: 'docker build --build-arg UID=1000 --build-arg GID=1000 
--build-arg MINIFI_VERSION=0.7.0 --build-arg 
MINIFI_PACKAGE=nifi-minifi-cpp-0.7.0-bin.tar.gz -t apacheminificpp:0.7.0 .'
 Sending build context to Docker daemon 777.2 kB
 Step 1 : FROM alpine:3.5
  ---> 88e169ea8f46
diff --git a/conf/minifi.properties b/conf/minifi.properties
index eedc221..6c4ccd5 100644
--- a/conf/minifi.properties
+++ b/conf/minifi.properties
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 # Core Properties #
-nifi.version=0.6.0
+nifi.version=0.7.0
 nifi.flow.configuration.file=./conf/config.yml
 nifi.administrative.yield.duration=30 sec
 # If a component has no work to do (is "bored"), how long should we wait 
before checking again for work?

Reply via email to