Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dilyand committed Jul 9, 2020
1 parent 134827e commit ac4f3d7
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ EOF

cd $TRAVIS_BUILD_DIR

project_version=$(sbt version -Dsbt.log.noformat=true | perl -ne 'print "$1\n" if /(\d+\.\d+\.\d+[^\r\n]*)/' | head -n 1 | tr -d '\n')
project_version=$(sbt version -Dsbt.log.noformat=true | perl -ne 'print "$1\n" if /(\d+\.\d+\.\d+[^\r\n]*)/' | tail -n 1 | tr -d '\n')
if [ "${project_version}" == "${tag_version}" ]; then
sbt +publish
sbt +bintraySyncMavenCentral
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Version 0.7.1 (2020-07-07)
--------------------------
Bump geoip2 to 2.13.1 (#136)
Bump cats-effect to 2.1.3 (#137)
Bump cats-core to 2.1.1 (#138)
Bump scala-lru-map to 0.4.0 (#139)
Bump scalacheck to 1.14.3 (#140)
Bump specs2-core 4.10.0 (#141)
Bump sbt to 1.3.12 (#143)
Bump sbt-bintray to 0.5.6 (#144)
Bump sbt-unidoc to 0.4.3 (#145)
Bump sbt-site to 1.3.3 (#146)
Bump sbt-tpolecat to 0.1.13 (#147)
Bump sbt-scoverage to 1.6.1 (#149)
Bump Scala to 2.13.3 (#128)
Integrate Snyk (#142)

Version 0.7.0 (2020-06-06)
--------------------------
Add support for anonymous IP database (#132)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ can also configure an LRU (Least Recently Used) cache of variable size

## Installation

The latest version of scala-maxmind-iplookups is **0.7.0** and is compatible with Scala 2.12.
The latest version of scala-maxmind-iplookups is **0.7.1** and is compatible with Scala 2.13.

Add this to your SBT config:

```scala
val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.7.0"
val maxmindIpLookups = "com.snowplowanalytics" %% "scala-maxmind-iplookups" % "0.7.1"
```

Retrieve the `GeoLite2-City.mmdb` file from the [MaxMind downloads page][maxmind-downloads]
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lazy val root = project
.settings(
organization := "com.snowplowanalytics",
name := "scala-maxmind-iplookups",
version := "0.7.0",
version := "0.7.1",
description := "Scala wrapper for MaxMind GeoIP2 library",
scalaVersion := "2.13.3",
crossScalaVersions := Seq("2.13.3", "2.12.10"),
Expand Down

0 comments on commit ac4f3d7

Please sign in to comment.