Skip to content

Commit

Permalink
Bump version number for 2.1.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
enzo1982 committed Feb 9, 2023
1 parent 4ccc349 commit c576195
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.0)

project(MP4v2 VERSION 2.1.1)
project(MP4v2 VERSION 2.1.2)

set(CMAKE_CXX_STANDARD 11)

Expand Down
4 changes: 4 additions & 0 deletions doc/texi/ReleaseNotes.texi
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
@contents

@chapter What's New?
Version 2.1.2 fixes build system issues, mainly in the CMake build system support. This release also fixes a file seeking
issue observed on Windows when compiled with _WIN32_WINNT < 0x600 and linked against modern CRT DLLs. In addition, two minor
issues related to data handling are fixed.

Version 2.1.1 fixes a type mismatch preventing MP4v2 from compiling on 32 bit systems.

Version 2.1 updates the existing build systems and adds support for building with CMake and Xcode. It also fixes compilation
Expand Down
2 changes: 1 addition & 1 deletion project/project.m4sugar
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ define([PRJ_url_bugreport], [https://github.com/enzo1982/issues])
define([PRJ_support], [[email protected]])
define([PRJ_version_major], [2])
define([PRJ_version_minor], [1])
define([PRJ_version_point], [1])
define([PRJ_version_point], [2])
define([PRJ_repo_url], [[email protected]:enzo1982/mp4v2.git])
10 changes: 5 additions & 5 deletions vstudio/include/mp4v2/project.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
#define MP4V2_PROJECT_name "MP4v2"
#define MP4V2_PROJECT_name_lower "mp4v2"
#define MP4V2_PROJECT_name_upper "MP4V2"
#define MP4V2_PROJECT_name_formal "MP4v2 2.1.1"
#define MP4V2_PROJECT_name_formal "MP4v2 2.1.2"
#define MP4V2_PROJECT_url_website "https://mp4v2.org"
#define MP4V2_PROJECT_url_downloads "https://github.com/enzo1982/releases"
#define MP4V2_PROJECT_url_discussion "https://github.com/enzo1982/discussions"
#define MP4V2_PROJECT_url_bugreport "https://github.com/enzo1982/issues"
#define MP4V2_PROJECT_support "<[email protected]>"
#define MP4V2_PROJECT_version "2.1.1"
#define MP4V2_PROJECT_version_hex 0x00020101
#define MP4V2_PROJECT_version "2.1.2"
#define MP4V2_PROJECT_version_hex 0x00020102
#define MP4V2_PROJECT_version_major 2
#define MP4V2_PROJECT_version_minor 1
#define MP4V2_PROJECT_version_point 1
#define MP4V2_PROJECT_version_point 2
#define MP4V2_PROJECT_repo_url "[email protected]:enzo1982/mp4v2.git"
#define MP4V2_PROJECT_build "Mon Mar 21 23:53:15 2022"
#define MP4V2_PROJECT_build "Thu Feb 09 23:15:44 UTC 2023"

/*****************************************************************************/

Expand Down
6 changes: 3 additions & 3 deletions xcode/include/libplatform/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
#define PACKAGE_NAME "MP4v2"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "MP4v2 2.1.1"
#define PACKAGE_STRING "MP4v2 2.1.2"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "mp4v2"
Expand All @@ -64,12 +64,12 @@
#define PACKAGE_URL "https://mp4v2.org"

/* Define to the version of this package. */
#define PACKAGE_VERSION "2.1.1"
#define PACKAGE_VERSION "2.1.2"

/* Define to 1 if all of the C90 standard headers exist (not just the ones
required in a freestanding environment). This macro is provided for
backward compatibility; new code need not use it. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "2.1.1"
#define VERSION "2.1.2"
10 changes: 5 additions & 5 deletions xcode/include/mp4v2/project.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
#define MP4V2_PROJECT_name "MP4v2"
#define MP4V2_PROJECT_name_lower "mp4v2"
#define MP4V2_PROJECT_name_upper "MP4V2"
#define MP4V2_PROJECT_name_formal "MP4v2 2.1.1"
#define MP4V2_PROJECT_name_formal "MP4v2 2.1.2"
#define MP4V2_PROJECT_url_website "https://mp4v2.org"
#define MP4V2_PROJECT_url_downloads "https://github.com/enzo1982/releases"
#define MP4V2_PROJECT_url_discussion "https://github.com/enzo1982/discussions"
#define MP4V2_PROJECT_url_bugreport "https://github.com/enzo1982/issues"
#define MP4V2_PROJECT_support "<[email protected]>"
#define MP4V2_PROJECT_version "2.1.1"
#define MP4V2_PROJECT_version_hex 0x00020101
#define MP4V2_PROJECT_version "2.1.2"
#define MP4V2_PROJECT_version_hex 0x00020102
#define MP4V2_PROJECT_version_major 2
#define MP4V2_PROJECT_version_minor 1
#define MP4V2_PROJECT_version_point 1
#define MP4V2_PROJECT_version_point 2
#define MP4V2_PROJECT_repo_url "[email protected]:enzo1982/mp4v2.git"
#define MP4V2_PROJECT_build "Mon Mar 21 23:53:15 2022"
#define MP4V2_PROJECT_build "Thu Feb 09 23:15:44 UTC 2023"

/*****************************************************************************/

Expand Down

0 comments on commit c576195

Please sign in to comment.