Skip to content

Commit

Permalink
2.13.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Y_Less committed Dec 28, 2022
1 parent ec4b222 commit 89243fc
Show file tree
Hide file tree
Showing 15 changed files with 24 additions and 19 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.5)
project(sscanf LANGUAGES C CXX VERSION 2.13.6)

set(CMAKE_CXX_STANDARD 17)

Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sscanf 2.13.5
# sscanf 2.13.6

## Introduction

Expand Down Expand Up @@ -170,7 +170,8 @@ This will fail because `"hello"` is not a whole number (or indeed any type of nu
* 15.15 [sscanf 2.13.2 - 07/09/2022](#sscanf-2132---07092022)
* 15.16 [sscanf 2.13.3 - 04/12/2022](#sscanf-2133---04122022)
* 15.17 [sscanf 2.13.4 - 20/12/2022](#sscanf-2134---20122022)
* 15.17 [sscanf 2.13.5 - 28/12/2022](#sscanf-2135---28122022)
* 15.18 [sscanf 2.13.5 - 28/12/2022](#sscanf-2135---28122022)
* 15.19 [sscanf 2.13.6 - 28/12/2022](#sscanf-2136---28122022)

## Downloads

Expand Down Expand Up @@ -2216,3 +2217,7 @@ the Initial Developer. All Rights Reserved.
* Add docker builds.
* Fix `[*]` again.

### sscanf 2.13.6 - 28/12/2022

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

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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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 5
#define SSCANF_VERSION_BUILD 6

#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.5
* sscanf 2.13.6
*
* 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.5
* sscanf 2.13.6
*
* 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 = 5;
#define SSCANF_VERSION_BUILD 5
static stock SSCANF_VERSION_BUILD = 6;
#define SSCANF_VERSION_BUILD 6

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

0 comments on commit 89243fc

Please sign in to comment.