diff --git a/README.md b/README.md index 1f187f8..034faca 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # CHIP-8 Emulator -[![Latest release](https://img.shields.io/badge/latest_release-2.0-orange.svg)](https://github.com/thibaultmeyer/chip8-emulator/releases) +[![Latest release](https://img.shields.io/badge/latest_release-3.0-orange.svg)](https://github.com/thibaultmeyer/chip8-emulator/releases) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/thibaultmeyer/chip8-emulator/blob/master/LICENSE) [![CodeFactor](https://www.codefactor.io/repository/github/thibaultmeyer/chip8-emulator/badge)](https://www.codefactor.io/repository/github/thibaultmeyer/chip8-emulator) diff --git a/src/version.h b/src/version.h index eb11b90..892411a 100644 --- a/src/version.h +++ b/src/version.h @@ -2,9 +2,9 @@ # define CHIP8EMU_VERSION_H # define CHIP8EMU_AUTHOR "Thibault Meyer" # define CHIP8EMU_APPNAME "CHIP-8 Emulator" -# define CHIP8EMU_VERSION "2.0" +# define CHIP8EMU_VERSION "3.0" # ifdef _WIN32 -# define CHIP8EMU_VERSION_WIN_FILE 2,0,0,0 +# define CHIP8EMU_VERSION_WIN_FILE 3,0,0,0 # define CHIP8EMU_VERSION_WIN_PRODUCT CHIP8EMU_VERSION ".0.0" # endif # define CHIP8EMU_DESCRIPTION "Emulator for the CHIP-8 virtual machine"