Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Release] update version #223

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ OPTION(MQTT_SUPPORT "Enable MQTT" OFF)
OPTION(AITT_SUPPORT "Enable AITT" OFF)

IF (NOT DEFINED VERSION)
SET(VERSION 0.2.5)
SET(VERSION 0.2.6)
ENDIF()

# GoogleTest requires at least C++11 and match the nnstreamer cpp version.
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
nnstreamer-edge (0.2.6.0) unstable bionic focal jammy; urgency=medium

* 0.2.6 Release (Tizen 9.0 M2)

-- Sangjung Woo <[email protected]> Mon, 02 Sep 2024 11:00:00 +0900

nnstreamer-edge (0.2.5.0) unstable xenial bionic focal; urgency=medium

* 0.2.5 Start development of 0.2.5 for next release (0.2.6)
Expand Down
5 changes: 4 additions & 1 deletion packaging/nnstreamer-edge.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Summary: Common library set for nnstreamer-edge
# 2. Ubuntu : ./debian/changelog
# 3. Tizen : ./packaging/nnstreamer-edge.spec
# 4. TizenRT : ./tools/build_TizenRT/Makefile
Version: 0.2.5
Version: 0.2.6
Release: 1
Group: Machine Learning/ML Framework
Packager: Sangjung Woo <[email protected]>
Expand Down Expand Up @@ -198,6 +198,9 @@ rm -rf %{buildroot}
%endif # unittest

%changelog
* Mon Sep 02 2024 Sangjung Woo <[email protected]>
- Release of 0.2.6 (Tizen 9.0 M2)

* Fri Sep 15 2023 Sangjung Woo <[email protected]>
- Start development of 0.2.5 for next release (0.2.6)

Expand Down
2 changes: 1 addition & 1 deletion tools/build_TizenRT/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
-include $(TOPDIR)/Make.defs

# Set nnstreamer-edge version
VERSION = 0.2.5
VERSION = 0.2.6
VERSION_MAJOR = $(word 1,$(subst ., ,$(VERSION)))
VERSION_MINOR = $(word 2,$(subst ., ,$(VERSION)))
VERSION_MICRO = $(word 3,$(subst ., ,$(VERSION)))
Expand Down
Loading