Skip to content

Commit 065e716

Browse files
committed
Release version 1.2.0
1 parent 5ad50a4 commit 065e716

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
### 1.2.0 (unreleased)
1+
### 1.2.0 (Dec 6, 2016)
22

33
- New features
4-
- Add support for Scala 2.12;
4+
- Support for Scala 2.12;
55
- New method `closeAll` in `HtmlUnitBrowser`, for closing opened windows;
66
- New model `Node` representing a DOM node - in this library, either a `ElementNode` or a `TextNode`;
77
- New methods `childNodes` and `siblingNodes` in `Element`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Take a look at [Examples.scala](https://github.com/ruippeixotog/scala-scraper/bl
66

77
## Quick Start
88

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

1111
```scala
12-
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "1.1.0"
12+
libraryDependencies += "net.ruippeixotog" %% "scala-scraper" % "1.2.0"
1313
```
1414

1515
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).

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import scalariform.formatter.preferences._
22

33
name := "scala-scraper"
44
organization := "net.ruippeixotog"
5-
version := "1.2.0-SNAPSHOT"
5+
version := "1.2.0"
66

77
scalaVersion := "2.12.1"
88
crossScalaVersions := Seq("2.11.8", "2.12.1")

0 commit comments

Comments
 (0)