Start development of 1.5.2 as 1.6.0-RC3 accepted/tizen/unified/20200408.131442 submit/tizen/20200408.065121
authorMyungJoo Ham <myungjoo.ham@samsung.com>
Wed, 8 Apr 2020 03:38:58 +0000 (12:38 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Wed, 8 Apr 2020 06:49:36 +0000 (15:49 +0900)
I might wait for some of the following PRs before merging this version mark.
- #2244 #2246 #2247 #2248 #2249

Changes during 1.5.1:

1.5.1 -> 1.5.2
- Use gmodule instead of dlfcn for wider compatibility
- Get/Set properties for tensor-filters & C-API.
- Support C++ class as tensor-filter subplugin. (experimental. C++ filter API is not yet fixed)
- Highly configurable Android build. (for smaller app binaries)
- Tensor-Filter auto framework detection mode (C-API support)
- Linux Foundation AI compliance & Github ORG migration
- Upgraded Tensor-Filter API (C)
        - Applied portable logging mechanism.
        - Removed assertion failure for Tizen sensor errors.
- OpenCV compatibility fixes.

- Fixed issues found by static analyzers
- More error/exception handling for robustness
- Shows negative test case statistics

Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com>
CHANGES
debian/changelog
jni/nnstreamer.mk
meson.build
packaging/nnstreamer.spec

diff --git a/CHANGES b/CHANGES
index d9eb693..88abc06 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,19 @@
+1.5.1 -> 1.5.2
+       - Use gmodule instead of dlfcn for wider compatibility.
+       - Get/Set properties for tensor-filters & C-API.
+       - Support C++ class as tensor-filter subplugin. (experimental. C++ filter API is not yet fixed).
+       - Highly configurable Android build. (for smaller app binaries).
+       - Tensor-Filter auto framework detection mode (C-API support).
+       - Linux Foundation AI compliance & Github ORG migration.
+       - Upgraded Tensor-Filter API (C).
+       - Applied portable logging mechanism.
+       - Removed assertion failure for Tizen sensor errors.
+
+       - Fixed issues found by static analyzers>
+       - More error/exception handling for robustness.
+       - Shows negative test case statistics.
+       - OpenCV compatibility fixes.
+
 1.5.0 -> 1.5.1
        - Filter subplugin APIs updated. Both V0 (minor changes to the conventional) and V1 (refactored API set) are supported.
        - Fixed major issue: now, each instance of a filter subplugin may have different property values.
index c149abe..ab62e2c 100644 (file)
@@ -1,3 +1,9 @@
+nnstreamer (1.5.2.0) unstable xenial bionic; urgency=medium
+
+  * 1.5.2 development starts (1.6.0.RC3)
+
+ -- MyungJoo Ham <myungjoo.ham@samsung.com>  Wed, 08 Apr 2020 12:30:58 +0900
+
 nnstreamer (1.5.1.0) unstable xenial bionic; urgency=medium
 
   * 1.5.1 development starts (1.6.0 RC2)
index ecdd9aa..e7e4725 100644 (file)
@@ -8,7 +8,7 @@ ifndef GSTREAMER_ROOT_ANDROID
 $(error GSTREAMER_ROOT_ANDROID is not defined!)
 endif
 
-NNSTREAMER_VERSION  := 1.5.1
+NNSTREAMER_VERSION  := 1.5.2
 
 NNSTREAMER_GST_HOME := $(NNSTREAMER_ROOT)/gst/nnstreamer
 NNSTREAMER_EXT_HOME := $(NNSTREAMER_ROOT)/ext/nnstreamer
index dad182a..2dec2ea 100644 (file)
@@ -2,7 +2,7 @@
 # If you are using Tizen 5.0+ or Ubuntu/Bionix+, you don't need to mind meson version.
 
 project('nnstreamer', 'c', 'cpp',
-  version: '1.5.1',
+  version: '1.5.2',
   license: ['LGPL'],
   meson_version: '>=0.50.0',
   default_options: [
index 750d7b6..b7794e3 100644 (file)
@@ -46,7 +46,7 @@ Summary:      gstreamer plugins for neural networks
 # 2. Tizen  : ./packaging/nnstreamer.spec
 # 3. Android: ./jni/nnstreamer.mk
 # 4. Meson  : ./meson.build
-Version:       1.5.1
+Version:       1.5.2
 Release:       0
 Group:         Applications/Multimedia
 Packager:      MyungJoo Ham <myungjoo.ham@samsung.com>
@@ -628,6 +628,9 @@ cp -r result %{buildroot}%{_datadir}/nnstreamer/unittest/
 %endif
 
 %changelog
+* Wed Apr 08 2020 MyungJoo Ham <myungjoo.ham@samsung.com>
+- Start development of 1.5.2 (1.6.0-RC3)
+
 * Wed Mar 18 2020 MyungJoo Ham <myungjoo.ham@samsung.com>
 - Start development of 1.5.1 (1.6.0-RC2)