Skip to content

Commit

Permalink
Set version to 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ruippeixotog committed Mar 22, 2018
1 parent cc92a07 commit 4526830
Show file tree
Hide file tree
Showing 30 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
### 0.9.1 (unreleased)
### 0.9.1 (Mar 22, 2018)

- New features
- `ConfigReader` and `ConfigWriter` for `Char`;
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -36,14 +36,14 @@ To use PureConfig in an existing SBT project with Scala 2.10 or a later version,
`build.sbt`:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.9.1"
```

For Scala 2.10 you need also the Macro Paradise plugin:

```scala
libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig" % "0.9.0",
"com.github.pureconfig" %% "pureconfig" % "0.9.1",
compilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.patch)
)
```
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/tut/README.md
Expand Up @@ -36,14 +36,14 @@ To use PureConfig in an existing SBT project with Scala 2.10 or a later version,
`build.sbt`:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.9.1"
```

For Scala 2.10 you need also the Macro Paradise plugin:

```scala
libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig" % "0.9.0",
"com.github.pureconfig" %% "pureconfig" % "0.9.1",
compilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.patch)
)
```
Expand Down
4 changes: 2 additions & 2 deletions docs/src/main/tut/docs/index.md
Expand Up @@ -9,14 +9,14 @@ To use PureConfig in an existing SBT project with Scala 2.10 or a later version,
`build.sbt`:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig" % "0.9.1"
```

For Scala 2.10 you also need the Macro Paradise plugin:

```scala
libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig" % "0.9.0",
"com.github.pureconfig" %% "pureconfig" % "0.9.1",
compilerPlugin("org.scalamacros" % "paradise" % "2.0.1" cross CrossVersion.patch)
)
```
Expand Down
2 changes: 1 addition & 1 deletion example/build.sbt
Expand Up @@ -5,7 +5,7 @@ version := "1.0"
scalaVersion := "2.12.2"

libraryDependencies ++= Seq(
"com.github.pureconfig" %% "pureconfig" % "0.9.0",
"com.github.pureconfig" %% "pureconfig" % "0.9.1",

// needed for Scala 2.10
compilerPlugin("org.scalamacros" % "paradise" % "2.1.0" cross CrossVersion.patch))
Expand Down
2 changes: 1 addition & 1 deletion modules/akka/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for selected [Akka](http://akka.io/) classes to PureConfig.
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-akka" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-akka" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/akka/src/main/tut/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for selected [Akka](http://akka.io/) classes to PureConfig.
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-akka" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-akka" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/cats-effect/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for loading configuration using [cats-effect](https://github.com/ty
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats-effect" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats-effect" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/cats-effect/src/main/tut/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for loading configuration using [cats-effect](https://github.com/ty
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats-effect" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats-effect" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/cats/README.md
Expand Up @@ -9,7 +9,7 @@ classes.
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/cats/src/main/tut/README.md
Expand Up @@ -9,7 +9,7 @@ classes.
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-cats" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/enum/README.md
Expand Up @@ -11,7 +11,7 @@ Automatically create a converter to read [enum](https://github.com/julienrf/enum
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enum" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enum" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/enum/src/main/tut/README.md
Expand Up @@ -11,7 +11,7 @@ Automatically create a converter to read [enum](https://github.com/julienrf/enum
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enum" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enum" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/enumeratum/README.md
Expand Up @@ -11,7 +11,7 @@ Automatically create a converters to read [Enumeratum](https://github.com/lloydm
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enumeratum" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enumeratum" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/enumeratum/src/main/tut/README.md
Expand Up @@ -11,7 +11,7 @@ Automatically create a converters to read [Enumeratum](https://github.com/lloydm
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enumeratum" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-enumeratum" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/fs2/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for loading and saving configurations from [fs2](https://github.com
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-fs2" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-fs2" % "0.9.1"
```

Note that as fs2 only supports Scala 2.11+ this module in only available for those versions.
Expand Down
2 changes: 1 addition & 1 deletion modules/fs2/src/main/tut/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for loading and saving configurations from [fs2](https://github.com
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-fs2" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-fs2" % "0.9.1"
```

Note that as fs2 only supports Scala 2.11+ this module in only available for those versions.
Expand Down
2 changes: 1 addition & 1 deletion modules/hadoop/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for selected [Hadoop](http://hadoop.apache.org/) classes to PureCon
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-hadoop" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-hadoop" % "0.9.1"
```

Also, `pureconfig-hadoop` depends on `hadoop-common` with `provided` scope. This means that you should explicitly add a dependency on `hadoop-common` or any other Hadoop library which depends on `hadoop-common`. Usually it would be something like this:
Expand Down
2 changes: 1 addition & 1 deletion modules/hadoop/src/main/tut/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for selected [Hadoop](http://hadoop.apache.org/) classes to PureCon
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-hadoop" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-hadoop" % "0.9.1"
```

Also, `pureconfig-hadoop` depends on `hadoop-common` with `provided` scope. This means that you should explicitly add a dependency on `hadoop-common` or any other Hadoop library which depends on `hadoop-common`. Usually it would be something like this:
Expand Down
2 changes: 1 addition & 1 deletion modules/http4s/README.md
Expand Up @@ -9,7 +9,7 @@ for other classes are welcome :)
In addition to [core PureConfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-http4s" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-http4s" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/javax/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for selected javax classes to PureConfig.
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-javax" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-javax" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/javax/src/main/tut/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for selected javax classes to PureConfig.
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-javax" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-javax" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/joda/README.md
Expand Up @@ -13,7 +13,7 @@ The converters need to be provided a `org.joda.time.format.DateTimeFormatter` to
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-joda" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-joda" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/joda/src/main/tut/README.md
Expand Up @@ -13,7 +13,7 @@ The converters need to be provided a `org.joda.time.format.DateTimeFormatter` to
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-joda" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-joda" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/scala-xml/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for XML via [Scala XML](https://github.com/scala/scala-xml) to Pure
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-scala-xml" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-scala-xml" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/scala-xml/src/main/tut/README.md
Expand Up @@ -7,7 +7,7 @@ Adds support for XML via [Scala XML](https://github.com/scala/scala-xml) to Pure
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-scala-xml" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-scala-xml" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/squants/README.md
Expand Up @@ -11,7 +11,7 @@ Automatically create a converter to read [Squants](http://www.squants.com/)'s be
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-squants" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-squants" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion modules/squants/src/main/tut/README.md
Expand Up @@ -11,7 +11,7 @@ Automatically create a converter to read [Squants](http://www.squants.com/)'s be
In addition to [core pureconfig](https://github.com/pureconfig/pureconfig), you'll need:

```scala
libraryDependencies += "com.github.pureconfig" %% "pureconfig-squants" % "0.9.0"
libraryDependencies += "com.github.pureconfig" %% "pureconfig-squants" % "0.9.1"
```

## Example
Expand Down
2 changes: 1 addition & 1 deletion scripts/try_pureconfig.sh
Expand Up @@ -2,7 +2,7 @@
test -e ~/.coursier/cr || (mkdir -p ~/.coursier && wget -q -O ~/.coursier/cr https://git.io/vgvpD && chmod +x ~/.coursier/cr)
CLASSPATH="$(~/.coursier/cr fetch -q -p \
\
com.github.pureconfig:pureconfig_2.11:0.9.0 \
com.github.pureconfig:pureconfig_2.11:0.9.1 \
com.lihaoyi:ammonite-repl_2.11.7:0.5.2 \
\
)" java ammonite.repl.Main --predef 'import pureconfig._'
2 changes: 1 addition & 1 deletion version.sbt
@@ -1 +1 @@
version in ThisBuild := "0.9.1-SNAPSHOT"
version in ThisBuild := "0.9.1"

0 comments on commit 4526830

Please sign in to comment.