From 031d046a77f9bf09ac40d97c59304d48580d9648 Mon Sep 17 00:00:00 2001 From: Jeff McKenna Date: Fri, 17 May 2024 09:00:11 -0300 Subject: [PATCH 1/3] update for 1.2.1 release --- LICENSE | 2 +- NEWS => NEWS.md | 3 +++ VERSION | 2 +- doc/Doxyfile | 2 +- src/ows_define.h.in | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) rename NEWS => NEWS.md (97%) diff --git a/LICENSE b/LICENSE index d32f01f..fffa601 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) <2007-2021> +Copyright (c) <2007-2024> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/NEWS b/NEWS.md similarity index 97% rename from NEWS rename to NEWS.md index 438fb1a..963270d 100644 --- a/NEWS +++ b/NEWS.md @@ -1,3 +1,6 @@ +1.2.1 (2024-05-17) *in memory of Olivier Courtin* + - Handle check when using TINYOWS_MAPFILE + 1.2.0 (2021-06-11) *in memory of Olivier Courtin* - Fix custom types conversion (Vincent Mora) - Add support for geometry-less tables (Even Rouault) diff --git a/VERSION b/VERSION index 26aaba0..6085e94 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.0 +1.2.1 diff --git a/doc/Doxyfile b/doc/Doxyfile index 5cebf81..04c607a 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -23,7 +23,7 @@ PROJECT_NAME = tinyows # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.2.0 +PROJECT_NUMBER = 1.2.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/src/ows_define.h.in b/src/ows_define.h.in index d3ff65d..30da8ba 100644 --- a/src/ows_define.h.in +++ b/src/ows_define.h.in @@ -28,7 +28,7 @@ #define OWS_DEBUG #endif -#define TINYOWS_VERSION "1.2.0" +#define TINYOWS_VERSION "1.2.1" #define TINYOWS_FCGI @USE_FCGI@ #define OWS_CONFIG_FILE_PATH "/etc/tinyows.xml" From d68d4da5bb52d3807dbb2f75faf8c1c443da3431 Mon Sep 17 00:00:00 2001 From: Jeff McKenna Date: Fri, 17 May 2024 09:02:31 -0300 Subject: [PATCH 2/3] update for 1.2.1 release --- LICENSE => LICENSE.md | 0 VERSION => VERSION.md | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename LICENSE => LICENSE.md (100%) rename VERSION => VERSION.md (100%) diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md diff --git a/VERSION b/VERSION.md similarity index 100% rename from VERSION rename to VERSION.md From 85f0ec2eb76883ce84fbc7d2d78af25ea9e5efad Mon Sep 17 00:00:00 2001 From: Jeff McKenna Date: Fri, 17 May 2024 09:14:53 -0300 Subject: [PATCH 3/3] update for 1.2.1 release --- NEWS.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 963270d..397d4c5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,7 @@ 1.2.1 (2024-05-17) *in memory of Olivier Courtin* - - Handle check when using TINYOWS_MAPFILE + - Fix JSON encoding ([#100](https://github.com/MapServer/tinyows/pull/100)) (Kévin Dubuc) + - Use stdbool.h instead of custom definitions ([#99](https://github.com/MapServer/tinyows/pull/99)) (Bas Couwenberg) + - Handle check when using TINYOWS_MAPFILE ([#97](https://github.com/MapServer/tinyows/pull/97)) (Jeff McKenna) 1.2.0 (2021-06-11) *in memory of Olivier Courtin* - Fix custom types conversion (Vincent Mora)