Skip to content

Commit

Permalink
Version 1.14.1 (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdallmeyer-sr authored Jun 17, 2021
1 parent 2c07487 commit 3345a34
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.14.1] - 2021-06-17

Bug Fixes
- AssertThat<Any?>.isA should compile on non-null receivers

Other improvements
- Switch back to targeting jvm 1.8

## [1.14.0] - 2021-06-04

New Features
Expand Down
2 changes: 1 addition & 1 deletion baleen-script/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ First create a file with a suffix `main.kts` and place these boilerplate lines a
```kotlin
#!/usr/bin/env kotlin

@file:DependsOn("com.shoprunner:baleen-script:1.14.0")
@file:DependsOn("com.shoprunner:baleen-script:1.14.1")

import com.shoprunner.baleen.*
import com.shoprunner.baleen.Baleen.describeAs
Expand Down
2 changes: 1 addition & 1 deletion baleen-script/src/examples/example-csv.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Uncomment to use mavenLocal. Run `./gradlew publishToMavenLocal -Pskip.signing=true`
//@file:Repository("file:///Users/username/.m2/repository/")
@file:DependsOn("com.shoprunner:baleen-script:1.14.0")
@file:DependsOn("com.shoprunner:baleen-script:1.14.1")

import com.shoprunner.baleen.*
import com.shoprunner.baleen.Baleen.describeAs
Expand Down
2 changes: 1 addition & 1 deletion baleen-script/src/examples/example-db-snowflake.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Uncomment to use mavenLocal. Run `./gradlew publishToMavenLocal -Pskip.signing=true`
//@file:Repository("file:///Users/username/.m2/repository/")
@file:DependsOn("com.shoprunner:baleen-script:1.14.0")
@file:DependsOn("com.shoprunner:baleen-script:1.14.1")
@file:DependsOn("net.snowflake:snowflake-jdbc:3.13.1")

import com.shoprunner.baleen.*
Expand Down
2 changes: 1 addition & 1 deletion baleen-script/src/examples/example-http.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Uncomment to use mavenLocal. Run `./gradlew publishToMavenLocal -Pskip.signing=true`
//@file:Repository("file:///Users/username/.m2/repository/")
@file:DependsOn("com.shoprunner:baleen-script:1.14.0")
@file:DependsOn("com.shoprunner:baleen-script:1.14.1")

import com.shoprunner.baleen.*
import com.shoprunner.baleen.Baleen.describeAs
Expand Down
2 changes: 1 addition & 1 deletion baleen-script/src/examples/example-json.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Uncomment to use mavenLocal. Run `./gradlew publishToMavenLocal -Pskip.signing=true`
//@file:Repository("file:///Users/username/.m2/repository/")
@file:DependsOn("com.shoprunner:baleen-script:1.14.0")
@file:DependsOn("com.shoprunner:baleen-script:1.14.1")

import com.shoprunner.baleen.*
import com.shoprunner.baleen.Baleen.describeAs
Expand Down
2 changes: 1 addition & 1 deletion baleen-script/src/examples/example-xml.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// Uncomment to use mavenLocal. Run `./gradlew publishToMavenLocal -Pskip.signing=true`
//@file:Repository("file:///Users/username/.m2/repository/")
@file:DependsOn("com.shoprunner:baleen-script:1.14.0")
@file:DependsOn("com.shoprunner:baleen-script:1.14.1")

import com.shoprunner.baleen.*
import com.shoprunner.baleen.Baleen.describeAs
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=1.14.0
version=1.14.1
group=com.shoprunner

sonatypeUsername=
Expand Down

0 comments on commit 3345a34

Please sign in to comment.