Skip to content

Commit

Permalink
2.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Y_Less committed Jan 2, 2023
1 parent 154e34d commit 9a665ff
Show file tree
Hide file tree
Showing 15 changed files with 23 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.19)
project(sscanf LANGUAGES C CXX VERSION 2.13.6)
project(sscanf LANGUAGES C CXX VERSION 2.13.7)

set(CMAKE_CXX_STANDARD 17)

Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sscanf 2.13.6
# sscanf 2.13.7

## Introduction

Expand Down Expand Up @@ -172,6 +172,7 @@ This will fail because `"hello"` is not a whole number (or indeed any type of nu
* 15.17 [sscanf 2.13.4 - 20/12/2022](#sscanf-2134---20122022)
* 15.18 [sscanf 2.13.5 - 28/12/2022](#sscanf-2135---28122022)
* 15.19 [sscanf 2.13.6 - 28/12/2022](#sscanf-2136---28122022)
* 15.20 [sscanf 2.13.7 - 01/02/2023](#sscanf-2137---02012023)

## Downloads

Expand Down Expand Up @@ -2221,3 +2222,7 @@ the Initial Developer. All Rights Reserved.

* Fixed a crash with `[*]` when there aren't enough parameters.

### sscanf 2.13.7 - 01/02/2023

* Improve GDK plugin compatibility.

2 changes: 1 addition & 1 deletion args.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion array.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion array.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion data.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion data.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion enum.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion enum.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion kustom.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion specifiers.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
2 changes: 1 addition & 1 deletion specifiers.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
4 changes: 2 additions & 2 deletions sscanf.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down Expand Up @@ -62,7 +62,7 @@

#define SSCANF_VERSION_MAJOR 2
#define SSCANF_VERSION_MINOR 13
#define SSCANF_VERSION_BUILD 6
#define SSCANF_VERSION_BUILD 7

#define SSCANF_VERSION STRINGISE(SSCANF_VERSION_MAJOR) "." STRINGISE(SSCANF_VERSION_MINOR) "." STRINGISE(SSCANF_VERSION_BUILD)

Expand Down
2 changes: 1 addition & 1 deletion sscanf.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down
6 changes: 3 additions & 3 deletions sscanf2.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* sscanf 2.13.6
* sscanf 2.13.7
*
* Version: MPL 1.1
*
Expand Down Expand Up @@ -156,8 +156,8 @@ static stock SSCANF_VERSION_MINOR = 13;
* The sscanf build number.
* </remarks>
*/
static stock SSCANF_VERSION_BUILD = 6;
#define SSCANF_VERSION_BUILD 6
static stock SSCANF_VERSION_BUILD = 7;
#define SSCANF_VERSION_BUILD 7

/**
* <library>sscanf</library>
Expand Down

0 comments on commit 9a665ff

Please sign in to comment.