Daniele Bartolini 4 rokov pred
rodič
commit
db44ae0681
5 zmenil súbory, kde vykonal 11 pridanie a 7 odobranie
  1. 3 3
      README.md
  2. 4 0
      docs/changelog.rst
  3. 2 2
      docs/conf.py
  4. 1 1
      src/config.h
  5. 1 1
      tools/config.vala

+ 3 - 3
README.md

@@ -17,9 +17,9 @@ for more info.
 ### Binaries
 
   * [Changelog](https://crownengine.github.io/crown/html/latest/changelog.html)
-  * [Crown v0.45.0 for Linux 64-bits](https://github.com/dbartolini/crown/releases/download/v0.45.0/crown-0.45.0-linux-x64.tar.gz)
-  * [Crown v0.45.0 for Windows 64-bits](https://github.com/dbartolini/crown/releases/download/v0.45.0/crown-0.45.0-windows-x64.zip)
-  * [Crown v0.45.0 all releases](https://github.com/dbartolini/crown/releases/tag/v0.45.0)
+  * [Crown v0.46.0 for Linux 64-bits](https://github.com/dbartolini/crown/releases/download/v0.46.0/crown-0.46.0-linux-x64.tar.gz)
+  * [Crown v0.46.0 for Windows 64-bits](https://github.com/dbartolini/crown/releases/download/v0.46.0/crown-0.46.0-windows-x64.zip)
+  * [Crown v0.46.0 all releases](https://github.com/dbartolini/crown/releases/tag/v0.46.0)
   
 ### Arch Linux ([AUR](https://aur.archlinux.org/packages/crown/))
     yay -S crown

+ 4 - 0
docs/changelog.rst

@@ -1,6 +1,10 @@
 Changelog
 =========
 
+0.47.0
+------
+*DD MMM YYYY*
+
 0.46.0
 ------
 *19 Nov 2021*

+ 2 - 2
docs/conf.py

@@ -54,9 +54,9 @@ author = 'Daniele Bartolini'
 # built documents.
 #
 # The short X.Y version.
-version = '0.46.0'
+version = '0.47.0'
 # The full version, including alpha/beta/rc tags.
-release = '0.46.0'
+release = '0.47.0'
 
 # The language for content autogenerated by Sphinx. Refer to documentation
 # for a list of supported languages.

+ 1 - 1
src/config.h

@@ -8,7 +8,7 @@
 #include "core/platform.h"
 
 #define CROWN_VERSION_MAJOR 0
-#define CROWN_VERSION_MINOR 46
+#define CROWN_VERSION_MINOR 47
 #define CROWN_VERSION_PATCH 0
 
 #define CROWN_VERSION CE_STRINGIZE(CROWN_VERSION_MAJOR) \

+ 1 - 1
tools/config.vala

@@ -5,7 +5,7 @@
 
 namespace Crown
 {
-const string CROWN_VERSION = "0.46.0";
+const string CROWN_VERSION = "0.47.0";
 
 #if CROWN_PLATFORM_LINUX
 const string ENGINE_DIR = ".";