From 15686b85c1cf26cda8e06bb3f1e8a56292f87efd Mon Sep 17 00:00:00 2001 From: gh0stwizard Date: Thu, 11 Feb 2021 09:19:13 +0300 Subject: [PATCH] bump version 1.0.2 --- CMakeLists.txt | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c19f57..828ee60 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.0) -project(iana-tld-extractor VERSION 1.0.1 LANGUAGES C) +project(iana-tld-extractor VERSION 1.0.2 LANGUAGES C) option(WITH_IDN2 "Build with libidn2" OFF) option(WITH_CURL "Build with libcurl" ON) diff --git a/Makefile b/Makefile index 1eddf1d..147f177 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ CPPFLAGS += -Imyhtml/include MAJOR_VERSION = 1 MINOR_VERSION = 0 -PATCH_VERSION = 1 +PATCH_VERSION = 2 VERSION = $(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_VERSION) #----------------------------------------------------------#