Skip to content

Commit

Permalink
fix suffix-hyphens description in test data invalid.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Tosca committed May 18, 2024
1 parent e2a6998 commit da080d9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# typeid-kotlin
![Build Status](https://github.com/aleris/typeid-kotlin/actions/workflows/build-on-push.yml/badge.svg)
![Current Version](https://img.shields.io/badge/Version-0.0.5-blue)
![Current Version](https://img.shields.io/badge/Version-0.0.6-blue)


## A Kotlin implementation of [TypeID](https://github.com/jetpack-io/typeid).
Expand All @@ -23,14 +23,14 @@ To use with Maven:
<dependency>
<groupId>earth.adi</groupId>
<artifactId>typeid-kotlin</artifactId>
<version>0.0.5</version>
<version>0.0.6</version>
</dependency>
```

To use via Gradle:

```kotlin
implementation("earth.adi:typeid-kotlin:0.0.5")
implementation("earth.adi:typeid-kotlin:0.0.6")
```


Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {

group = "earth.adi"

version = "0.0.5"
version = "0.0.6"

repositories { mavenCentral() }

Expand Down
2 changes: 1 addition & 1 deletion src/test/resources/spec/invalid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# This example has the right length, so that the failure is caused by the hyphens
# and not the suffix length
typeid: "prefix_123456789-123456789-123456"
description: "The suffix should be lowercase with no uppercase letters"
description: "The suffix can't have any hyphens"

- name: suffix-wrong-alphabet
typeid: "prefix_ooooooiiiiiiuuuuuuulllllll"
Expand Down

0 comments on commit da080d9

Please sign in to comment.