updated version

master
Robinson 2023-01-25 01:57:05 +01:00
parent e77266a898
commit 00e96550ed
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
3 changed files with 6 additions and 7 deletions

View File

@ -11,7 +11,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>ByteUtilities</artifactId> <artifactId>ByteUtilities</artifactId>
<version>1.7</version> <version>1.8</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -21,13 +21,12 @@ Gradle Info
```` ````
dependencies { dependencies {
... ...
compile "com.dorkbox:ByteUtilities:1.2" compile "com.dorkbox:ByteUtilities:1.8"
} }
```` ````
License 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. references.

View File

@ -36,7 +36,7 @@ object Extras {
// set for the project // set for the project
const val description = "Byte manipulation and Unsigned Number Utilities" const val description = "Byte manipulation and Unsigned Number Utilities"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "1.7" const val version = "1.8"
// set as project.ext // set as project.ext
const val name = "ByteUtilities" const val name = "ByteUtilities"

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2021 dorkbox, llc * Copyright 2023 dorkbox, llc
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -19,5 +19,5 @@ object BytesInfo {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version = "1.7" const val version = "1.8"
} }