Version 4.5.0a1

This commit is contained in:
Tom Keffer
2021-03-15 14:58:05 -07:00
parent 625ffc9b3a
commit d727acdb09
15 changed files with 18 additions and 14 deletions

View File

@@ -26,7 +26,7 @@ log_failure = True
socket_timeout = 20
# Do not modify this - it is used by setup.py when installing and updating.
version = 4.4.0
version = 4.5.0a1
##############################################################################

View File

@@ -7,7 +7,7 @@
from __future__ import absolute_import
import time
__version__="4.4.0"
__version__="4.5.0a1"
# Holds the program launch time in unix epoch seconds:
# Useful for calculating 'uptime.'

View File

@@ -13,9 +13,6 @@ experimental and subject to change! Addresses issue #341.
Improved performance when calculating series using aggregation periods that are
multiples of a day.
4.4.1 MM/DD/YYYY
Changed NOAA reports to use the 'normalized_ascii' encoding instead of 'utf8'
(which did not display correctly for most browsers). Fixes issue #646.

View File

@@ -44,7 +44,7 @@
<div class="logoref">
<a href='https://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right"
alt="weewx logo"/> </a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">WeeWX Customization Guide</div>

View File

@@ -47,7 +47,7 @@
<div class="logoref">
<a href='http://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right" alt="weewx logo"/>
</a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">Notes for Developers of the WeeWX Weather System</div>

View File

@@ -52,7 +52,7 @@
<div class="logoref">
<a href='https://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right" alt="weewx logo"/>
</a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">WeeWX Hardware Guide</div>

View File

@@ -26,7 +26,7 @@
<div class="logoref">
<a href='https://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right" alt="weewx logo"/>
</a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">WeeWX Documentation</div>

View File

@@ -80,7 +80,7 @@
<div class="logoref">
<a href='https://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right"
alt="weewx logo"/> </a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">WeeWX Upgrade Guide</div>

View File

@@ -47,7 +47,7 @@
<div class="logoref">
<a href='https://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right"
alt="weewx logo"/> </a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">User's Guide to WeeWX</div>

View File

@@ -49,7 +49,7 @@
<div class="logoref">
<a href='https://weewx.com'> <img src='images/logo-weewx.png' class='logo' style="float:right"
alt="weewx logo"/> </a><br/> <span class='version'>
Version: 4.4
Version: 4.5
</span>
</div>
<div class="title">WeeWX Utilities Guide</div>

View File

@@ -1,3 +1,5 @@
* Mon Mar 15 2021 Thomas Keffer (Author of weewx) <tkeffer@gmail.com> - 4.5.0a1-1
- new upstream release
* Sat Jan 30 2021 Thomas Keffer (Author of weewx) <tkeffer@gmail.com> - 4.4.0-1
- new upstream release
* Mon Jan 04 2021 Thomas Keffer (Author of weewx) <tkeffer@gmail.com> - 4.3.0-1

View File

@@ -1,3 +1,5 @@
* Mon Mar 15 2021 Thomas Keffer (Author of weewx) <tkeffer@gmail.com> - 4.5.0a1-1
- new upstream release
* Sat Jan 30 2021 Thomas Keffer (Author of weewx) <tkeffer@gmail.com> - 4.4.0-1
- new upstream release
* Mon Jan 04 2021 Thomas Keffer (Author of weewx) <tkeffer@gmail.com> - 4.3.0-1

View File

@@ -1,3 +1,6 @@
weewx (4.5.0a1-1) unstable; urgency=low
* new upstream release
-- Thomas Keffer (Author of weewx) <tkeffer@gmail.com> Mon, 15 Mar 2021 14:50:42 -0700
weewx (4.4.0-1) unstable; urgency=low
* new upstream release
-- Thomas Keffer (Author of weewx) <tkeffer@gmail.com> Sat, 30 Jan 2021 10:52:17 -0800

View File

@@ -31,7 +31,7 @@ from distutils.command.install_lib import install_lib
from distutils.core import setup
from distutils.debug import DEBUG
VERSION = "4.4.0"
VERSION = "4.5.0a1"
if sys.version_info < (2, 7):
log.fatal('WeeWX requires Python V2.7 or greater.')

View File

@@ -23,7 +23,7 @@ log_failure = True
socket_timeout = 20
# Do not modify this. It is used when installing and updating weewx.
version = 4.4.0
version = 4.5.0a1
##############################################################################