summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.txt4
-rw-r--r--Cargo.toml2
-rw-r--r--README.txt13
-rw-r--r--src/luma.rs2
4 files changed, 13 insertions, 8 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index c0c0b6a..e1d5fa3 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,7 @@
+# 0.28
+
+* Fix wrong license in readme;
+
# 0.27
* Add support for Thumb:
diff --git a/Cargo.toml b/Cargo.toml
index d813a0b..7b57df9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "luma"
-version = "0.39.0"
+version = "0.40.0"
authors = ["Gabriel Jensen"]
edition = "2021"
description = "AGB emulator."
diff --git a/README.txt b/README.txt
index f8e3154..4525988 100644
--- a/README.txt
+++ b/README.txt
@@ -3,16 +3,17 @@
Copyright 2021-2023 Gabriel Jensen.
This program is free software: you can redistribute it and/or modify it under
-the terms of the GNU General Public License as published by the Free Software
-Foundation, either version 3 of the License, or (at your option) any later
-version.
+the terms of the GNU Affero General Public License as published by the Free
+Software Foundation, either version 3 of the License, or (at your option) any
+later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
+details.
-You should have received a copy of the GNU General Public License along with
-this program. If not, see <https://www.gnu.org/licenses/>.
+You should have received a copy of the GNU Affero General Public License along
+with this program. If not, see <https://www.gnu.org/licenses/>.
- ABOUT
diff --git a/src/luma.rs b/src/luma.rs
index 9448ce0..2d52699 100644
--- a/src/luma.rs
+++ b/src/luma.rs
@@ -32,7 +32,7 @@ pub struct VersionType<T> {
pub const VERSION: VersionType::<u32> = VersionType::<u32> {
major: 0x0,
- minor: 0x27,
+ minor: 0x28,
};
pub const CONFIGURATION_VERSION: u32 = 0x0;