Skip to content

Commit 81ced8b

Browse files
committed
Bumped version to 1.0.1.1
1 parent 7b83136 commit 81ced8b

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

Scalatron/Readme.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ in the public domain. Feel free to use, copy, and improve them!
5454

5555
## Version History
5656

57+
### Version 1.0.1.1 -- 2012-05-21
58+
59+
* Minor fix to facilitate migration of existing user accounts (created with 1.0.0.2 or earlier) to git-based versioning.
60+
61+
5762
### Version 1.0.1.0 -- 2012-05-20
5863

5964
* Version control now uses Git. See "intermediate" path documentation in Scalatron Player Setup guide. Thanks Charles O'Farrell (@charleso)!

Scalatron/src/scalatron/scalatron/impl/ScalatronUser.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@ case class ScalatronUser(name: String, scalatron: ScalatronImpl) extends Scalatr
6060

6161
val gitRepository = RepositoryCache.open(FileKey.exact(new File(gitBaseDirectoryPath), FS.DETECTED), false)
6262
// Always ensure Git repository is initialised.
63-
if (!gitRepository.getDirectory.exists()) {
64-
gitRepository.create()
65-
}
63+
if (!gitRepository.getDirectory.exists()) gitRepository.create()
6664
val git = new Git(gitRepository)
6765

6866

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ organization := "Scalatron"
22

33
name := "Scalatron"
44

5-
version in Global := "1.0.1.0"
5+
version in Global := "1.0.1.1"
66

77
scalaVersion := "2.9.1"

0 commit comments

Comments
 (0)