From 00e96550ed00c5852073ed257f1a648d248d73d2 Mon Sep 17 00:00:00 2001 From: Robinson Date: Wed, 25 Jan 2023 01:57:05 +0100 Subject: [PATCH] updated version --- README.md | 7 +++---- build.gradle.kts | 2 +- src/dorkbox/bytes/BytesInfo.kt | 4 ++-- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 598e8cf..ac4bf14 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Maven Info com.dorkbox ByteUtilities - 1.7 + 1.8 ``` @@ -21,13 +21,12 @@ Gradle Info ```` dependencies { ... - compile "com.dorkbox:ByteUtilities:1.2" + compile "com.dorkbox:ByteUtilities:1.8" } ```` License --------- -This project is © 2021 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further +This project is © 2023 dorkbox llc, and is distributed under the terms of the Apache v2.0 License. See file "LICENSE" for further references. - diff --git a/build.gradle.kts b/build.gradle.kts index 0b71f2c..e05bcac 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -36,7 +36,7 @@ object Extras { // set for the project const val description = "Byte manipulation and Unsigned Number Utilities" const val group = "com.dorkbox" - const val version = "1.7" + const val version = "1.8" // set as project.ext const val name = "ByteUtilities" diff --git a/src/dorkbox/bytes/BytesInfo.kt b/src/dorkbox/bytes/BytesInfo.kt index 4eecfad..717f186 100644 --- a/src/dorkbox/bytes/BytesInfo.kt +++ b/src/dorkbox/bytes/BytesInfo.kt @@ -1,5 +1,5 @@ /* - * Copyright 2021 dorkbox, llc + * Copyright 2023 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,5 +19,5 @@ object BytesInfo { /** * Gets the version number. */ - const val version = "1.7" + const val version = "1.8" }