Skip to content
This repository has been archived by the owner on Mar 21, 2023. It is now read-only.

Commit

Permalink
Release 4.1.0
Browse files Browse the repository at this point in the history
* Added
 * `Sha512` Object
 * `asSha512` extension for ByteArray
 * `partition` extension for IntArray
 * `swap` extension for IntArray
 * `lessThen` extension for Integer
 * `lessThenOrEqualTo` extension for Integer
 * `greaterThen` extension for Integer
 * `greaterThenOrEqualTo` extension for Integer
 * `kLibRequireMin` with a minimum only Version (Closes #6)
 * `arrayBinSearch` global function
 * `listQuicksort` global function
 * `replaceLast` extension for String
 * Implement [OpenSpec Konfig 19.3](https://gitlab.atvg-studios.com/atvg-studios/openspec/blob/master/Konfig/Konfig.pdf)
 * Implement [OpenSpec Konfig 20.1](https://gitlab.atvg-studios.com/atvg-studios/openspec/blob/master/Konfig/Konfig.pdf)
 * Implement [OpenSpec Konfig 20.2](https://gitlab.atvg-studios.com/atvg-studios/openspec/blob/master/Konfig/Konfig.pdf)
 * `AustrianBill` Class
 * Directory2 (`klib.files.Directory2`)

* Changed
 * Upgraded Kotlin from 1.3.60 to 1.3.61
 * Queue.enqueue `x` parameter renamed to `func`

* Deprecated
 * Directory (`klib.files.Directory`)

* Fixed
 * `kLibRequire` falsely made a `lessThen` comparison
  • Loading branch information
AtjonTV committed Mar 2, 2020
1 parent 2cc0b52 commit 6788acc
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security

## 4.1.0 - 25.02.2020 - Release 24

### Added
- `Sha512` Object
- `asSha512` extension for ByteArray
Expand All @@ -23,15 +32,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Implement [OpenSpec Konfig 20.1](https://gitlab.atvg-studios.com/atvg-studios/openspec/blob/master/Konfig/Konfig.pdf)
- Implement [OpenSpec Konfig 20.2](https://gitlab.atvg-studios.com/atvg-studios/openspec/blob/master/Konfig/Konfig.pdf)
- `AustrianBill` Class
- Directory2 (`klib.files.Directory2`)

### Changed
- Upgraded Kotlin from 1.3.60 to 1.3.61
- Queue.enqueue `x` parameter renamed to `func`

### Deprecated
- Directory (`klib.files.Directory`)
### Removed

### Fixed
- `kLibRequire` falsely made a `lessThen` comparison
### Security

## 4.0.0 - 23.11.2019 - Release 23

Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
| ------- | ------------------ |
| 4.1.x | :white_check_mark: |
| 4.0.x | :white_check_mark: |
| 3.2.x | :white_check_mark: |
| 3.2.x | :x: |
| 3.1.x | :x: |
| 3.0.x | :x: |

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kotlin.code.style=official

# kLib Version
klib_version=4.1.0-rc.1
klib_version=4.1.0

# Versions
kotlin_version=1.3.61
Expand Down
2 changes: 1 addition & 1 deletion maven/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="4.1.0-dev.5"
VERSION="4.1.0"

ATVG_DIST="file:///data/atjontv/git/maven-repo"

Expand Down
2 changes: 1 addition & 1 deletion maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.atvgstudios</groupId>
<artifactId>klib</artifactId>
<version>4.1.0-dev.5</version>
<version>4.1.0</version>
<name>kLib</name>
<description>kLib is a in Kotlin written Library by ATVG-Studios containing a set of useful Functions, Extensions and Types.</description>
<url>https://klib.atvg-studios.com/</url>
Expand Down

0 comments on commit 6788acc

Please sign in to comment.