diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e54217ed..db7020bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.1.1 - Unreleased + +[Compare with 0.1.0](https://github.com/AllayMC/Allay/compare/0.1.0...HEAD) + ## [0.1.0](https://github.com/AllayMC/Allay/releases/tag/0.1.0) - 2024-12-22 Hello Allay! This is the first release of Allay. diff --git a/server/build.gradle.kts b/server/build.gradle.kts index fdc2b6ad7..1ef8f4fb6 100644 --- a/server/build.gradle.kts +++ b/server/build.gradle.kts @@ -7,14 +7,14 @@ import java.io.ByteArrayOutputStream * This is not the same as the version of allay-api. * Please note that they are two things. */ -version = "0.1.0" +version = "0.1.1" /** * Indicates whether the current build is a development build. * * This value should be changed to false before release the next stable version, * and after releasing, change it back to true. */ -val isDevBuild = false; +val isDevBuild = true; plugins { id("jacoco")