From f0107692d80cd99228981f422892903f666541ba Mon Sep 17 00:00:00 2001 From: Rangi Date: Wed, 2 Jun 2021 18:11:35 -0400 Subject: [PATCH] Version 4.6.0 --- README.md | 2 +- src/version.h | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index da5a994..ca34176 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A map and tileset editor for [pokecrystal](https://github.com/pret/pokecrystal), Inspired by [crowdmap](https://github.com/yenatch/crowdmap), but implemented with C++ and [FLTK](http://www.fltk.org/), and with more functions for graphics editing. -Latest release: [**4.5.4**](https://github.com/Rangi42/polished-map/releases/tag/v4.5.4) +Latest release: [**4.6.0**](https://github.com/Rangi42/polished-map/releases/tag/v4.6.0) Follow the steps in [INSTALL.md](INSTALL.md) to install the release copy of Polished Map, or the longer instructions to build it yourself from source. diff --git a/src/version.h b/src/version.h index fec7521..75109d8 100644 --- a/src/version.h +++ b/src/version.h @@ -1,11 +1,11 @@ #ifndef VERSION_H #define VERSION_H -#define PROGRAM_VERSION 4,5,4 +#define PROGRAM_VERSION 4,6,0 #ifdef _DEBUG -#define PROGRAM_VERSION_STRING "4.5.4 [DEBUG]" +#define PROGRAM_VERSION_STRING "4.6.0 [DEBUG]" #else -#define PROGRAM_VERSION_STRING "4.5.4" +#define PROGRAM_VERSION_STRING "4.6.0" #endif #define PROGRAM_EXE_NAME "polishedmap" @@ -20,6 +20,6 @@ #define PROGRAM_AUTHOR "Rangi" -#define CURRENT_YEAR "2020" +#define CURRENT_YEAR "2021" #endif