Skip to content

Commit

Permalink
Release version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ruippeixotog committed Dec 6, 2016
1 parent 5ad50a4 commit 065e716
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### 1.2.0 (unreleased)
### 1.2.0 (Dec 6, 2016)

- New features
- Add support for Scala 2.12;
- Support for Scala 2.12;
- New method `closeAll` in `HtmlUnitBrowser`, for closing opened windows;
- New model `Node` representing a DOM node - in this library, either a `ElementNode` or a `TextNode`;
- New methods `childNodes` and `siblingNodes` in `Element`.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ Take a look at [Examples.scala](https://github.com/ruippeixotog/scala-scraper/bl

## Quick Start

To use Scala Scraper in an existing SBT project with Scala 2.11.x, add the following dependency to your `build.sbt`:
To use Scala Scraper in an existing SBT project with Scala 2.11 or 2.12, add the following dependency to your `build.sbt`:

```scala
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "1.1.0"
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "1.2.0"
```

If you are using an older version of this library, see this document for the version you're using: [0.1](https://github.com/ruippeixotog/scala-scraper/blob/v0.1/README.md), [0.1.1](https://github.com/ruippeixotog/scala-scraper/blob/v0.1.1/README.md), [0.1.2](https://github.com/ruippeixotog/scala-scraper/blob/v0.1.2/README.md).
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import scalariform.formatter.preferences._

name := "scala-scraper"
organization := "net.ruippeixotog"
version := "1.2.0-SNAPSHOT"
version := "1.2.0"

scalaVersion := "2.12.1"
crossScalaVersions := Seq("2.11.8", "2.12.1")
Expand Down

0 comments on commit 065e716

Please sign in to comment.