Skip to content

Commit

Permalink
Bumped version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kohnech committed Oct 10, 2024
1 parent 72e5611 commit e01ac47
Show file tree
Hide file tree
Showing 12 changed files with 28 additions and 22 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.6.0-Linux.tar.gz
path: /root/project/mpeg2ts-1.0.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.6.0-Linux.tar.gz
path: /root/project/mpeg2ts-1.0.0-Linux.tar.gz
- persist_to_workspace:
root: /root/project
paths:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Releases

*V1.0.0*
* [x] Support Apple M chipset
* [x] Fix issue with google test
* [x] Fix isse not including last PES packet
* [x] Add CMake presets

*V0.6.0*
* [x] Add broader support
* [x] Fix emscripten with CMake
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.6.0
VERSION 1.0.0
DESCRIPTION "Main project for MPEG-2 Parsing of transport streams"
LANGUAGES CXX
)
else()
project(
mpeg2ts
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "Webassembly main"
LANGUAGES CXX
)
else()
project(
a.out
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "CLI Parsing of h264 stream"
LANGUAGES CXX
)
else()
project(
h264parser
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "MPEG-2 CLI Parsing of transport streams"
LANGUAGES CXX
)
else()
project(
tsparser
VERSION 0.6.0
VERSION 1.0.0
LANGUAGES CXX
)
endif()
Expand Down
4 changes: 2 additions & 2 deletions libs/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ cmake_minimum_required(VERSION 3.5)
if(CMAKE_MINOR_VERSION GREATER 9)
project(
common
VERSION 0.6.0
VERSION 1.0.0
DESCRIPTION "Common utility lib"
LANGUAGES CXX
)
else()
project(
common
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "H264 Codec parser lib"
LANGUAGES CXX
)
else()
project(
h264codec
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "MPEG2 Codec parser lib"
LANGUAGES CXX
)
else()
project(
mpeg2codec
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "MPEG-2 Parsing lib of transport streams"
LANGUAGES CXX
)
else()
project(
mpeg2ts
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "Sample TsUtilities"
LANGUAGES CXX
)
else()
project(
sample_tsutilities
VERSION 0.6.0
VERSION 1.0.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.6.0
VERSION 1.0.0
DESCRIPTION "GTests for mpeg2ts lib"
LANGUAGES CXX
)
else()
project(
run_gtests
VERSION 0.6.0
VERSION 1.0.0
LANGUAGES CXX
)
endif()
Expand Down

0 comments on commit e01ac47

Please sign in to comment.