Skip to content

Commit

Permalink
prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
benasher44 committed Dec 29, 2019
1 parent af6ea74 commit f8ec835
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
project adheres to [Semantic Versioning](https://semver.org/).

## [0.0.8] - TBD
### Changed
- Removed `Uuid.parse` (#71)
- Use `java.util.UUID` on JVM (#71)

## [0.0.7] - 2019-12-29
### Added
- `uuidOf(bytes)` to construct a `Uuid` from a `ByteArray` (#67)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ kotlin.code.style=official
kotlin.incremental=true

GROUP=com.benasher44
VERSION=0.0.7
VERSION=0.0.8-SNAPSHOT

POM_URL=https://github.com/benasher44/uuid/
POM_SCM_URL=https://github.com/benasher44/uuid/
Expand Down
2 changes: 1 addition & 1 deletion src/jvmMain/kotlin/uuid.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ public actual val UUID.version: Int
get() = version()

public actual val UUID.variant: Int
get() = variant()
get() = variant()
2 changes: 0 additions & 2 deletions src/nonJvmMain/kotlin/uuid.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

package com.benasher44.uuid

import kotlin.DeprecationLevel.WARNING

/**
* A RFC4122 UUID
*
Expand Down

0 comments on commit f8ec835

Please sign in to comment.