Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change copyright in docs #11498

Merged
merged 3 commits into from
Oct 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion documentation/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Build documentation

Expand Down
27 changes: 20 additions & 7 deletions documentation/build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
/*
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
*/
// Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

import com.typesafe.play.docs.sbtplugin.Imports._
import com.typesafe.play.docs.sbtplugin._
Expand Down Expand Up @@ -80,12 +78,27 @@ lazy val main = Project("Play-Documentation", file("."))
scalaVersion := "2.13.10",
Test / fork := true,
Test / javaOptions ++= Seq("-Xmx512m", "-Xms128m"),
headerLicense := Some(HeaderLicense.Custom("Copyright (C) Lightbend Inc. <https://www.lightbend.com>")),
headerLicense := Some(
HeaderLicense.Custom(
"Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>"
)
),
headerMappings ++= Map(
FileType.xml -> CommentStyle.xmlStyleBlockComment,
FileType.conf -> CommentStyle.hashLineComment,
FileType("md") -> CommentStyle(new LineCommentCreator("<!---", "-->"), commentBetween("<!---", "*", "-->"))
FileType.xml -> CommentStyle.xmlStyleBlockComment,
FileType.conf -> CommentStyle.hashLineComment,
FileType("sbt") -> HeaderCommentStyle.cppStyleLineComment,
FileType("routes") -> HeaderCommentStyle.hashLineComment,
FileType("default") -> HeaderCommentStyle.hashLineComment,
FileType("properties") -> HeaderCommentStyle.hashLineComment,
FileType("js") -> HeaderCommentStyle.cStyleBlockComment,
FileType("css") -> HeaderCommentStyle.cStyleBlockComment,
FileType("less") -> HeaderCommentStyle.cStyleBlockComment,
FileType("md") -> CommentStyle(new LineCommentCreator("<!---", "-->"), commentBetween("<!---", "*", "-->")),
),
Compile / headerSources ++=
((baseDirectory.value ** ("*.default" || "*.properties" || "*.md" || "*.sbt" || "*.routes" || "routes" || "*.js" || "*.less" || "*.css"))
--- (baseDirectory.value ** "target" ** "*")).get ++
(baseDirectory.value / "project" ** "*.scala" --- (baseDirectory.value ** "target" ** "*")).get,
Test / headerSources ++= (baseDirectory.value ** "*.md").get,
Test / javafmt / sourceDirectories ++= (Test / unmanagedSourceDirectories).value,
Test / javafmt / sourceDirectories ++= (Test / unmanagedResourceDirectories).value,
Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/Home.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play %PLAY_VERSION% documentation

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/LatestRelease.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Latest release

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/ModuleDirectory.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play modules

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/about/Philosophy.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Introducing Play 2

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/about/PlayUserGroups.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play User Groups

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/Anatomy.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Anatomy of a Play application

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/IDE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Setting up your preferred IDE

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/Installing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Installing Play

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/Introduction.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What is Play?

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/LearningExamples.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Learning from Play Examples

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/NewApplication.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Creating a New Application

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/PlayConsole.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Using the sbt console

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/Requirements.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play Requirements

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/gettingStarted/code/PlayConsole.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
*/

package gettingStarted
Expand Down
2 changes: 2 additions & 0 deletions documentation/manual/gettingStarted/code/anatomy.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

lazy val root: Project = (project in file("."))
.enablePlugins(PlayScala)
// Use sbt default layout
Expand Down
2 changes: 2 additions & 0 deletions documentation/manual/gettingStarted/code/ide.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>

// #add-sbt-eclipse-plugin
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "5.2.4")
// #add-sbt-eclipse-plugin
Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/hacking/BuildingFromSource.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Building Play from source

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/hacking/Documentation.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Guidelines for writing Play documentation

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/hacking/Issues.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Issues tracker

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/hacking/Repositories.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Artifact repositories

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/hacking/Translations.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Translating the Play Documentation

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/hacking/WorkingWithGit.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Working with Git

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/Releases.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# About Play releases

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release21/Highlights21.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.1?

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release21/Migration21.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.1 migration guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release22/Highlights22.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.2

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release22/Migration22.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.2 Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release23/Highlights23.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.3

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release23/Migration23.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.3 Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release24/Highlights24.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.4

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Reactive Streams integration (experimental)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Anorm

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Removing `GlobalSettings`

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.4 Migration Guide

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Migrating Plugin to Module

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
*/

//#components-decl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
*/

package scaladoc {
package mycomponent {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
*/

//#module-decl
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/*
* Copyright (C) Lightbend Inc. <https://www.lightbend.com>
* Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com>
*/

package scaladoc {
package module {

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release25/Highlights25.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.5

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Crypto Migration Guide

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Java Migration Guide

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.5 Migration Guide

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Streams Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release26/Highlights26.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.6

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Cache APIs Migration

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# JPA Migration

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Java Configuration API Migration

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# I18N API Migration

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.6 Migration Guide

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play WS Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release27/Highlights27.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.7

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Java `Http.Context` changes

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.7 Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release28/Highlights28.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.8

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# Play 2.8 Migration Guide

Expand Down
2 changes: 1 addition & 1 deletion documentation/manual/releases/release29/Highlights29.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!--- Copyright (C) Lightbend Inc. <https://www.lightbend.com> -->
<!--- Copyright (C) from 2022 The Play Framework Contributors <https://github.com/playframework>, 2011-2021 Lightbend Inc. <https://www.lightbend.com> -->

# What's new in Play 2.9

Expand Down