diff --git a/README.md b/README.md
index 9bac4614b3..1e978c09d4 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ Rhino is licensed under the [MPL 2.0](./LICENSE.txt).
Rhino 1.7.8 | January 22, 2018 |
Rhino 1.7.9 | March 15, 2018 |
Rhino 1.7.10 | April 9, 2018 |
-Rhino 1.7.11 | TBD |
+Rhino 1.7.11 | May 30, 2019 |
[Release Notes](./RELEASE-NOTES.md) for recent releases.
diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
index 31c02bad1a..82daa75f6b 100644
--- a/RELEASE-NOTES.md
+++ b/RELEASE-NOTES.md
@@ -1,5 +1,5 @@
# Rhino 1.7.11
-## MONTH DAY, YEAR
+## May 30, 2019
This release includes implementations of a number of missing JavaScript language features,
including:
@@ -68,6 +68,9 @@ Igor Kuzmanenko (2):
* fixes XmlMemberGet toSource implementation (#483)
* fixes position for ParenthesizedExpression nodes (#129)
+Markus Sunela (1):
+* Add manual OSGi manifest
+
Mozilla-GitHub-Standards (1):
* Add Mozilla Code of Conduct file
diff --git a/gradle.properties b/gradle.properties
index b4dde3e4e3..da0e6c4f45 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,6 +1,6 @@
rootProject.name=rhino
group=org.mozilla
-version=1.7.11-RC2
+version=1.7.11
buildDir=buildGradle
mavenSnapshotRepo=https://oss.sonatype.org/content/repositories/snapshots
mavenReleaseRepo=https://oss.sonatype.org/service/local/staging/deploy/maven
diff --git a/maven/maven-pom.xml b/maven/maven-pom.xml
index a87d1bc253..f2172efe47 100644
--- a/maven/maven-pom.xml
+++ b/maven/maven-pom.xml
@@ -12,7 +12,7 @@
org.mozilla
rhino
Mozilla Rhino
- 1.7.11-RC2
+ 1.7.11
jar
diff --git a/src/manifest b/src/manifest
index 05d5872a64..6ec7385fcb 100644
--- a/src/manifest
+++ b/src/manifest
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
Main-Class: org.mozilla.javascript.tools.shell.Main
-Implementation-Version: 1.7.11-RC2
+Implementation-Version: 1.7.11
Implementation-Title: Mozilla Rhino 1.7.11
Implementation-Vendor: Mozilla Foundation
Implementation-URL: http://www.mozilla.org/rhino
diff --git a/src/org/mozilla/javascript/Delegator.java b/src/org/mozilla/javascript/Delegator.java
index c83599220a..255a55c913 100644
--- a/src/org/mozilla/javascript/Delegator.java
+++ b/src/org/mozilla/javascript/Delegator.java
@@ -151,7 +151,7 @@ public void put(String name, Scriptable start, Object value) {
}
/**
- * @see org.mozilla.javascript.Scriptable#put(Symbol, Scriptable, Object)
+ * @see org.mozilla.javascript.SymbolScriptable#put(Symbol, Scriptable, Object)
*/
@Override
public void put(Symbol symbol, Scriptable start, Object value) {