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>
<groupId>com.dorkbox</groupId>
<artifactId>ByteUtilities</artifactId>
<version>1.7</version>
<version>1.8</version>
</dependency>
</dependencies>
```
@ -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.

View File

@ -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"

View File

@ -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"
}