Skip to content

Commit 20ed9e9

Browse files
committed
Update version to 2.1.0
1 parent f42e848 commit 20ed9e9

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
cmake_minimum_required(VERSION 3.9...3.14)
55

6-
project(charls VERSION 2.0.1 LANGUAGES C CXX)
6+
project(charls VERSION 2.1.0 LANGUAGES C CXX)
77

88
# Determine if project is built as a subproject (using add_subdirectory) or if it is the master project.
99
set(MASTER_PROJECT OFF)

SECURITY.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22

33
## Supported Versions
44

5-
Use this section to tell people about which versions of your project are
6-
currently being supported with security updates.
7-
85
| Version | Supported |
96
| ------- | ------------------ |
10-
| 2.0.0 | :white_check_mark: |
7+
| 2.1.0 | :white_check_mark: |
8+
| 2.0.0 | :x: |
119
| 1.1.0 | :white_check_mark: |
1210
| < 1.1.0 | :x: |
1311

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 2.00.{build}
1+
version: 2.1.0.{build}
22
os: Visual Studio 2019
33
configuration:
44
- Debug

dotnet/src/CharLSNet.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<Description>".NET interop layer for the CharLS JPEG-LS codec"</Description>
88
<Company>Team-CharLS</Company>
99
<Authors>Team-CharLS</Authors>
10-
<Version>2.0.1</Version>
10+
<Version>2.1.0</Version>
1111
<AssemblyVersion>2.0.0.0</AssemblyVersion>
12-
<FileVersion>2.0.0.0</FileVersion>
12+
<FileVersion>2.1.0.0</FileVersion>
1313
<Copyright>Copyright 2019 Team CharLS</Copyright>
1414
<Platforms>AnyCPU</Platforms>
1515
<Configurations>Debug;Release;Checked</Configurations>

src/charls.rc

0 Bytes
Binary file not shown.

src/version.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
const char* CHARLS_API_CALLING_CONVENTION charls_get_version_string() noexcept
1414
{
15-
return TO_STRING(CHARLS_VERSION_MAJOR) "." TO_STRING(CHARLS_VERSION_MINOR) "." TO_STRING(CHARLS_VERSION_PATCH) "-rc1";
15+
return TO_STRING(CHARLS_VERSION_MAJOR) "." TO_STRING(CHARLS_VERSION_MINOR) "." TO_STRING(CHARLS_VERSION_PATCH);
1616
}
1717

1818
void CHARLS_API_CALLING_CONVENTION charls_get_version_number(int32_t* major, int32_t* minor, int32_t* patch) noexcept

0 commit comments

Comments
 (0)