Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit feb6e3d

Browse files
authored
Merge pull request #117 from bbc/philipn-release-1.6
Release 1.6
2 parents 70d902c + 86215ca commit feb6e3d

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# bmx Changelog
22

3+
## v1.6
4+
5+
### Breaking changes
6+
7+
* None
8+
9+
### Features
10+
11+
* Add bmxtranswrap `--strip-anc <filter>` option to set ANC data types to not pass through (https://github.com/bbc/bmx/pull/116)
12+
13+
### Bug fixes
14+
15+
* None
16+
17+
### Build changes
18+
19+
* None
20+
321
## v1.5
422

523
### Breaking changes

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else()
1313
endif()
1414

1515
project(bmx
16-
VERSION 1.5
16+
VERSION 1.6
1717
DESCRIPTION "A C++ library and set of utilities to read and write the SMPTE ST 377-1 MXF file format"
1818
HOMEPAGE_URL https://github.com/bbc/bmx
1919
LANGUAGES C CXX

deps/libMXF/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else()
1313
endif()
1414

1515
project(libMXF
16-
VERSION 1.5
16+
VERSION 1.6
1717
DESCRIPTION "Low-level C library for reading and writing the SMPTE ST 377-1 MXF file format"
1818
HOMEPAGE_URL https://github.com/bbc/libMXF
1919
LANGUAGES C CXX

deps/libMXFpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ else()
1313
endif()
1414

1515
project(libMXF++
16-
VERSION 1.5
16+
VERSION 1.6
1717
DESCRIPTION "C++ wrapper library for libMXF that supports reading and writing the SMPTE ST 377-1 MXF file format"
1818
HOMEPAGE_URL https://github.com/bbc/libMXFpp
1919
LANGUAGES CXX

docs/release.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ This describes the steps for making a release.
1313
* Check the [runner versions](https://docs.github.com/en/actions/using-github-hosted-runners/using-github-hosted-runners/about-github-hosted-runners) (e.g. `windows-2019` and `macos-13`) in the [release.yml](../.github/workflows/release.yml) workflow file are still available
1414
* Select the oldest macOS version available to help with compatibility
1515
* Run the [Release](https://github.com/bbc/bmx/actions/workflows/release.yml) workflow in GitHub Actions using the release branch to check it succeeds
16-
* Create a temporary tag using the steps from [Create a Release Tag](#create-a-release-tag) and then delete the tag once the workflow succeeds using the following commands:
16+
* On the release branch, create a temporary tag and then delete the tag once the workflow succeeds:
17+
18+
```bash
19+
export BMX_VERSION=<major version>.<minor version>
20+
git tag -a v${BMX_VERSION} -m "Version ${BMX_VERSION}"
21+
git push origin v${BMX_VERSION}
22+
```
1723

1824
```bash
1925
git push --delete origin v${BMX_VERSION}

0 commit comments

Comments
 (0)