Skip to content

Commit

Permalink
Bumped version to 0.6.0
Browse files Browse the repository at this point in the history
Release V0.6.0
  • Loading branch information
kohnech committed Apr 19, 2021
1 parent 728f0d3 commit 596578c
Show file tree
Hide file tree
Showing 11 changed files with 31 additions and 20 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cat CPackConfig.cmake &&
cpack --config CPackConfig.cmake
- store_artifacts:
path: /root/project/mpeg2ts-0.5.0-Linux.tar.gz
path: /root/project/mpeg2ts-0.6.0-Linux.tar.gz
- persist_to_workspace:
root: /root/project
paths:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
cat CPackConfig.cmake &&
cpack --config CPackConfig.cmake
- store_artifacts:
path: /root/project/mpeg2ts-0.5.0-Linux.tar.gz
path: /root/project/mpeg2ts-0.6.0-Linux.tar.gz
- persist_to_workspace:
root: /root/project
paths:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Releases

*V0.6.0*
* [x] Add broader support
* [x] Fix emscripten with CMake
* [x] Add support Ubuntu 16.04
* [x] Better comments in samples
* [x] Add remote container development environment
* [x] Fix some suggestions
* [x] Add H264 parser application
* [x] Update third-party libs Plog and Json to latest version
* [x] Enable CI testing for Windows and Mac

*V0.5.0*
* [x] Add github workflow: Crosscompilation Mac, Windows
* [x] Cleanup Sample
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
mpeg2ts
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "Main project for MPEG-2 Parsing of transport streams"
LANGUAGES CXX
)
else()
project(
mpeg2ts
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions apps/WebAssembly/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
a.out
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "Webassembly main"
LANGUAGES CXX
)
else()
project(
a.out
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions apps/h264parser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
h264parser
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "CLI Parsing of h264 stream"
LANGUAGES CXX
)
else()
project(
h264parser
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions apps/tsparser/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
tsparser
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "MPEG-2 CLI Parsing of transport streams"
LANGUAGES CXX
)
else()
project(
tsparser
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions libs/h264codec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
h264codec
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "H264 Codec parser lib"
LANGUAGES CXX
)
else()
project(
h264codec
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions libs/mpeg2codec/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
mpeg2codec
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "MPEG2 Codec parser lib"
LANGUAGES CXX
)
else()
project(
mpeg2codec
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions libs/mpeg2ts/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
mpeg2ts
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "MPEG-2 Parsing lib of transport streams"
LANGUAGES CXX
)
else()
project(
mpeg2ts
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions samples/TsUtilities/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
sample_tsutilities
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "Sample TsUtilities"
LANGUAGES CXX
)
else()
project(
sample_tsutilities
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ if(CMAKE_MINOR_VERSION GREATER 9)
include(GoogleTest) # Introduced in CMake 3.10
project(
run_gtests
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "GTests for mpeg2ts lib"
LANGUAGES CXX
)
else()
project(
run_gtests
VERSION 0.5.0
VERSION 0.6.0
LANGUAGES CXX
)
endif()
Expand Down

0 comments on commit 596578c

Please sign in to comment.