Skip to content

Commit 42525ec

Browse files
committed
Merge pull request scala#4942 from SethTisue/copyright-2016
bump copyright year to 2016
2 parents cc6fea6 + 310f4d0 commit 42525ec

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ TODO:
184184

185185
<property name="dists.dir" value="${basedir}/dists"/>
186186

187-
<property name="copyright.string" value="Copyright 2002-2015, LAMP/EPFL"/>
187+
<property name="copyright.string" value="Copyright 2002-2016, LAMP/EPFL"/>
188188

189189
<!-- These are NOT the flags used to run SuperSabbus, but the ones written
190190
into the script runners created with scala.tools.ant.ScalaTool -->

doc/LICENSE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ Scala is licensed under the [BSD 3-Clause License](http://opensource.org/license
22

33
## Scala License
44

5-
Copyright (c) 2002-2015 EPFL
5+
Copyright (c) 2002-2016 EPFL
66

7-
Copyright (c) 2011-2015 Typesafe, Inc.
7+
Copyright (c) 2011-2016 Typesafe, Inc.
88

99
All rights reserved.
1010

doc/License.rtf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
\fs48 Scala License
1111
\fs40 \
1212

13-
\fs26 Copyright (c) 2002-2015 EPFL\
14-
Copyright (c) 2011-2015 Typesafe, Inc.\
13+
\fs26 Copyright (c) 2002-2016 EPFL\
14+
Copyright (c) 2011-2016 Typesafe, Inc.\
1515
All rights reserved.\
1616
\
1717
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:\

project/VersionUtil.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object VersionUtil {
1919
)
2020

2121
lazy val generatePropertiesFileSettings = Seq[Setting[_]](
22-
copyrightString := "Copyright 2002-2015, LAMP/EPFL",
22+
copyrightString := "Copyright 2002-2016, LAMP/EPFL",
2323
resourceGenerators in Compile += generateVersionPropertiesFile.map(file => Seq(file)).taskValue,
2424
generateVersionPropertiesFile := generateVersionPropertiesFileImpl.value
2525
)

src/library/scala/util/Properties.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private[scala] trait PropertiesTrait {
105105
* or "version (unknown)" if it cannot be determined.
106106
*/
107107
val versionString = "version " + scalaPropOrElse("version.number", "(unknown)")
108-
val copyrightString = scalaPropOrElse("copyright.string", "Copyright 2002-2015, LAMP/EPFL")
108+
val copyrightString = scalaPropOrElse("copyright.string", "Copyright 2002-2016, LAMP/EPFL")
109109

110110
/** This is the encoding to use reading in source files, overridden with -encoding.
111111
* Note that it uses "prop" i.e. looks in the scala jar, not the system properties.

src/scaladoc/scala/tools/nsc/doc/html/page/Template.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ class Template(universe: doc.Universe, generator: DiagramGenerator, tpl: DocTemp
280280

281281
{
282282
if (Set("epfl", "EPFL").contains(tpl.universe.settings.docfooter.value))
283-
<div id="footer">Scala programming documentation. Copyright (c) 2003-2015 <a href="http://www.epfl.ch" target="_top">EPFL</a>, with contributions from <a href="http://typesafe.com" target="_top">Typesafe</a>.</div>
283+
<div id="footer">Scala programming documentation. Copyright (c) 2003-2016 <a href="http://www.epfl.ch" target="_top">EPFL</a>, with contributions from <a href="http://typesafe.com" target="_top">Typesafe</a>.</div>
284284
else
285285
<div id="footer"> { tpl.universe.settings.docfooter.value } </div>
286286
}

src/scalap/decoder.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
version.number=2.0.1
2-
copyright.string=(c) 2002-2015 LAMP/EPFL
2+
copyright.string=(c) 2002-2016 LAMP/EPFL

0 commit comments

Comments
 (0)