Bump version to v1.11.1

This commit is contained in:
Otto Winter 2019-02-23 20:17:11 +01:00
parent d00c92fe71
commit 3a01257a50
No known key found for this signature in database
GPG Key ID: DB66C0BE6013F97E
6 changed files with 15 additions and 8 deletions

View File

@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 1.11.0
PROJECT_NUMBER = 1.11.1
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -1,5 +1,5 @@
ESPHOME_CORE_PATH = ../esphome-core
ESPHOME_CORE_TAG = v1.11.0
ESPHOME_CORE_TAG = v1.11.1
.PHONY: html cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png

View File

@ -1 +1 @@
1.11.0
1.11.1

View File

@ -40,12 +40,12 @@
<script>window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}gtag('js', new Date());gtag('config', 'UA-113203480-2', {'anonymize_ip': true});</script>
<script>
var old = window.localStorage.getItem("release");
if (old === null) { window.localStorage.setItem("release", "{{ release }}");
} else if (old !== "{{ release }}") {
var old = window.localStorage.getItem("version");
if (old === null) { window.localStorage.setItem("version", "{{ version }}");
} else if (old !== "{{ version }}") {
document.getElementById("upgrade-footer").classList.add("not-hidden");
document.getElementById("upgrade-footer-changelog").addEventListener('click', function () {
window.localStorage.setItem("release", "{{ release }}");
window.localStorage.setItem("version", "{{ version }}");
});
}
</script>

View File

@ -75,6 +75,13 @@ I've made that a top priority for the next release, but I've hit some road block
prevented it from working in a stable way for this release (and I needed to finally get this darn
release out).
Release 1.11.1 - February 23
----------------------------
- core: Fix addressable not updating light :corepr:`521`
- docs: Add Ethernet pin config for olimex esp32-poe board :docspr:`166` by :ghuser:`setola`
- docs: FAQ: Add description for mDNS support on different subnets :docspr:`169` by :ghuser:`Taigar2015`
Breaking Changes
----------------

View File

@ -73,7 +73,7 @@ author = 'Otto Winter'
# The short X.Y version.
version = '1.11'
# The full version, including alpha/beta/rc tags.
release = '1.11.0'
release = '1.11.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.