Skip to content

Commit 5de0e97

Browse files
committed
Updated version to 2.1.1 for RC build
1 parent 030e7f0 commit 5de0e97

File tree

11 files changed

+35
-32
lines changed

11 files changed

+35
-32
lines changed

CHANGES.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
2.0.2:
2-
Ozkan Sezer - Mon Oct 23 11:54:16 2017
3-
* Build fixes for OS/2
1+
2.2.0:
2+
* Added support for building with CMake
43

54
2.0.1:
65
Mārtiņš Možeiko - Fri Sep 27 23:26:33 2013

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
55
# See release_checklist.md
66
set(MAJOR_VERSION 2)
77
set(MINOR_VERSION 1)
8-
set(MICRO_VERSION 0)
8+
set(MICRO_VERSION 1)
99
set(SDL_REQUIRED_VERSION 2.0.4)
1010

1111
set(DYLIB_COMPATIBILITY_VERSION "1")

Makefile.os2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
LIBNAME = SDL2net
88
MAJOR_VERSION = 2
99
MINOR_VERSION = 1
10-
MICRO_VERSION = 0
10+
MICRO_VERSION = 1
1111
VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(MICRO_VERSION)
1212

1313
TITLENAME = $(LIBNAME) $(VERSION)

SDL_net.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ extern "C" {
5656
*/
5757
#define SDL_NET_MAJOR_VERSION 2
5858
#define SDL_NET_MINOR_VERSION 1
59-
#define SDL_NET_PATCHLEVEL 0
59+
#define SDL_NET_PATCHLEVEL 1
6060

6161
/* This macro can be used to fill a version structure with the compile-time
6262
* version of the SDL_net library.

VisualC/Version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
2828
//
2929

3030
VS_VERSION_INFO VERSIONINFO
31-
FILEVERSION 2,1,0,0
32-
PRODUCTVERSION 2,1,0,0
31+
FILEVERSION 2,1,1,0
32+
PRODUCTVERSION 2,1,1,0
3333
FILEFLAGSMASK 0x3fL
3434
#ifdef _DEBUG
3535
FILEFLAGS 0x1L
@@ -46,12 +46,12 @@ BEGIN
4646
BEGIN
4747
VALUE "CompanyName", "\0"
4848
VALUE "FileDescription", "SDL_net\0"
49-
VALUE "FileVersion", "2, 1, 0, 0\0"
49+
VALUE "FileVersion", "2, 1, 1, 0\0"
5050
VALUE "InternalName", "SDL_net\0"
5151
VALUE "LegalCopyright", "Copyright � 2022 Sam Lantinga\0"
5252
VALUE "OriginalFilename", "SDL_net.dll\0"
5353
VALUE "ProductName", "Simple DirectMedia Layer\0"
54-
VALUE "ProductVersion", "2, 1, 0, 0\0"
54+
VALUE "ProductVersion", "2, 1, 1, 0\0"
5555
END
5656
END
5757
BLOCK "VarFileInfo"

Xcode/Info-Framework.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.1.0</string>
18+
<string>2.1.1</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.1.0</string>
20+
<string>2.1.1</string>
2121
</dict>
2222
</plist>

Xcode/SDL_net.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@
365365
buildSettings = {
366366
COMBINE_HIDPI_IMAGES = YES;
367367
DYLIB_COMPATIBILITY_VERSION = 1;
368-
DYLIB_CURRENT_VERSION = 101.0.0;
368+
DYLIB_CURRENT_VERSION = 102.0.0;
369369
FRAMEWORK_VERSION = A;
370370
INFOPLIST_FILE = "Info-Framework.plist";
371371
INSTALL_PATH = "@rpath";
@@ -378,7 +378,7 @@
378378
buildSettings = {
379379
COMBINE_HIDPI_IMAGES = YES;
380380
DYLIB_COMPATIBILITY_VERSION = 1;
381-
DYLIB_CURRENT_VERSION = 101.0.0;
381+
DYLIB_CURRENT_VERSION = 102.0.0;
382382
FRAMEWORK_VERSION = A;
383383
INFOPLIST_FILE = "Info-Framework.plist";
384384
INSTALL_PATH = "@rpath";
@@ -391,7 +391,7 @@
391391
buildSettings = {
392392
COMBINE_HIDPI_IMAGES = YES;
393393
DYLIB_COMPATIBILITY_VERSION = 1;
394-
DYLIB_CURRENT_VERSION = 101.0.0;
394+
DYLIB_CURRENT_VERSION = 102.0.0;
395395
LIBRARY_STYLE = STATIC;
396396
OTHER_LIBTOOL_FLAGS = "";
397397
OTHER_REZFLAGS = "";
@@ -406,7 +406,7 @@
406406
buildSettings = {
407407
COMBINE_HIDPI_IMAGES = YES;
408408
DYLIB_COMPATIBILITY_VERSION = 1;
409-
DYLIB_CURRENT_VERSION = 101.0.0;
409+
DYLIB_CURRENT_VERSION = 102.0.0;
410410
LIBRARY_STYLE = STATIC;
411411
OTHER_LIBTOOL_FLAGS = "";
412412
OTHER_REZFLAGS = "";

configure

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.71 for SDL2_net 2.1.0.
3+
# Generated by GNU Autoconf 2.71 for SDL2_net 2.1.1.
44
#
55
# Report bugs to <https://github.com/libsdl-org/SDL_net/issues>.
66
#
@@ -760,8 +760,8 @@ MAKEFLAGS=
760760
# Identity of this package.
761761
PACKAGE_NAME='SDL2_net'
762762
PACKAGE_TARNAME='SDL2_net'
763-
PACKAGE_VERSION='2.1.0'
764-
PACKAGE_STRING='SDL2_net 2.1.0'
763+
PACKAGE_VERSION='2.1.1'
764+
PACKAGE_STRING='SDL2_net 2.1.1'
765765
PACKAGE_BUGREPORT='https://github.com/libsdl-org/SDL_net/issues'
766766
PACKAGE_URL=''
767767

@@ -1522,7 +1522,7 @@ if test "$ac_init_help" = "long"; then
15221522
# Omit some internal or obsolete options to make the list less imposing.
15231523
# This message is too long to be a string in the A/UX 3.1 sh.
15241524
cat <<_ACEOF
1525-
\`configure' configures SDL2_net 2.1.0 to adapt to many kinds of systems.
1525+
\`configure' configures SDL2_net 2.1.1 to adapt to many kinds of systems.
15261526
15271527
Usage: $0 [OPTION]... [VAR=VALUE]...
15281528
@@ -1593,7 +1593,7 @@ fi
15931593

15941594
if test -n "$ac_init_help"; then
15951595
case $ac_init_help in
1596-
short | recursive ) echo "Configuration of SDL2_net 2.1.0:";;
1596+
short | recursive ) echo "Configuration of SDL2_net 2.1.1:";;
15971597
esac
15981598
cat <<\_ACEOF
15991599
@@ -1707,7 +1707,7 @@ fi
17071707
test -n "$ac_init_help" && exit $ac_status
17081708
if $ac_init_version; then
17091709
cat <<\_ACEOF
1710-
SDL2_net configure 2.1.0
1710+
SDL2_net configure 2.1.1
17111711
generated by GNU Autoconf 2.71
17121712
17131713
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -1968,7 +1968,7 @@ cat >config.log <<_ACEOF
19681968
This file contains any messages produced by compilers while
19691969
running configure, to aid debugging if configure makes a mistake.
19701970
1971-
It was created by SDL2_net $as_me 2.1.0, which was
1971+
It was created by SDL2_net $as_me 2.1.1, which was
19721972
generated by GNU Autoconf 2.71. Invocation command line was
19731973
19741974
$ $0$ac_configure_args_raw
@@ -2730,7 +2730,7 @@ MAJOR_VERSION=2
27302730

27312731
MINOR_VERSION=1
27322732

2733-
MICRO_VERSION=0
2733+
MICRO_VERSION=1
27342734

27352735

27362736
BINARY_AGE=`expr $MINOR_VERSION \* 100 + $MICRO_VERSION`
@@ -11361,7 +11361,7 @@ fi
1136111361

1136211362
# Define the identity of the package.
1136311363
PACKAGE='SDL2_net'
11364-
VERSION='2.1.0'
11364+
VERSION='2.1.1'
1136511365

1136611366

1136711367
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -13958,7 +13958,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
1395813958
# report actual input values of CONFIG_FILES etc. instead of their
1395913959
# values after options handling.
1396013960
ac_log="
13961-
This file was extended by SDL2_net $as_me 2.1.0, which was
13961+
This file was extended by SDL2_net $as_me 2.1.1, which was
1396213962
generated by GNU Autoconf 2.71. Invocation command line was
1396313963
1396413964
CONFIG_FILES = $CONFIG_FILES
@@ -14017,7 +14017,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
1401714017
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1401814018
ac_cs_config='$ac_cs_config_escaped'
1401914019
ac_cs_version="\\
14020-
SDL2_net config.status 2.1.0
14020+
SDL2_net config.status 2.1.1
1402114021
configured by $0, generated by GNU Autoconf 2.71,
1402214022
with options \\"\$ac_cs_config\\"
1402314023

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl Set various version strings - taken gratefully from the GTk sources
44
# See release_checklist.md
55
m4_define([MAJOR_VERSION_MACRO], [2])
66
m4_define([MINOR_VERSION_MACRO], [1])
7-
m4_define([MICRO_VERSION_MACRO], [0])
7+
m4_define([MICRO_VERSION_MACRO], [1])
88

99
AC_INIT([SDL2_net],
1010
[MAJOR_VERSION_MACRO.MINOR_VERSION_MACRO.MICRO_VERSION_MACRO],

release_checklist.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,16 @@
1010
`SDL_NET_MAJOR_VERSION`, `SDL_NET_MINOR_VERSION`, `SDL_NET_PATCHLEVEL`
1111
* `configure.ac`:
1212
`MAJOR_VERSION`, `MINOR_VERSION`, `MICRO_VERSION`
13+
* `CMakeLists.txt`:
14+
`MAJOR_VERSION`, `MINOR_VERSION`, `MICRO_VERSION`
1315
* `Makefile.os2`:
1416
`MAJOR_VERSION`, `MINOR_VERSION`, `MICRO_VERSION`
1517
* `version.rc`:
1618
`FILEVERSION`, `PRODUCTVERSION`, `FileVersion`, `ProductVersion`
1719
* `VisualC/Version.rc`:
1820
`FILEVERSION`, `PRODUCTVERSION`, `FileVersion`, `ProductVersion`
21+
* `Xcode/Info-Framework.plist`:
22+
`CFBundleShortVersionString`, `CFBundleVersion`
1923

2024
* Bump ABI version information
2125

0 commit comments

Comments
 (0)