Skip to content

Commit

Permalink
Merge pull request #713 from ashawley/drop-0.10.x
Browse files Browse the repository at this point in the history
Remove 0.10.x references
  • Loading branch information
eed3si9n authored Aug 2, 2018
2 parents bbb68a6 + 609d6d2 commit b31bd01
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ classpaths.

### Basics

In sbt 0.10 and later, classpaths now include the Scala library and
In sbt, the classpath includes the Scala library and
(when declared as a dependency) the Scala compiler. Classpath-related
settings and tasks typically provide a value of type `Classpath`. This
is an alias for `Seq[Attributed[File]]`.
Expand Down
2 changes: 1 addition & 1 deletion src/reference/02-DetailTopics/02-Configuration/10-Paths.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ but several methods are augmented through implicits:

### Constructing a File

sbt 0.10+ uses
sbt uses
[java.io.File](https://docs.oracle.com/javase/8/docs/api/java/io/File.html)
to represent a file
and defines the type alias `File` for `java.io.File` so
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ to `ProjectRef`s.

### Classpaths

Classpaths in sbt 0.10+ are of type `Seq[Attributed[File]]`. This allows
Classpaths in sbt are of type `Seq[Attributed[File]]`. This allows
tagging arbitrary information to classpath entries. sbt currently uses
this to associate an `Analysis` with an entry. This is how it manages
the information needed for multi-project incremental recompilation. It
Expand Down
2 changes: 1 addition & 1 deletion src/reference/05-Faq/00.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ proguard := {
#### How would I change sbt's classpath dynamically?

It is possible to register additional jars that will be placed on sbt's
classpath (since version 0.10.1). Through
classpath. Through
[State](../api/sbt/State\$.html), it is possible to obtain a
[xsbti.ComponentProvider](../api/xsbti/ComponentProvider.html), which
manages application components. Components are groups of files in the
Expand Down

0 comments on commit b31bd01

Please sign in to comment.