Skip to content

Commit

Permalink
Merge pull request #226 from bmcculley/new-version
Browse files Browse the repository at this point in the history
doc update and setup for pypi
  • Loading branch information
bmcculley authored Aug 22, 2020
2 parents 610475c + 47ce1ae commit f14bd7e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Changelog

The full list of changes between each Python LiveReload release.

Version 2.6.3
-------------

Released on August 22, 2020

1. Support for custom default filenames.


Version 2.6.2
-------------

Expand Down
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ and a livereload server::
# open the web browser on startup, based on $BROWSER environment variable
server.serve(open_url_delay=5, debug=False)

# set a custom default file to open
server.serve(default_filename='example.html')


shell
~~~~~
Expand Down
2 changes: 1 addition & 1 deletion livereload/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:license: BSD, see LICENSE for more details.
"""

__version__ = '2.6.2'
__version__ = '2.6.3'
__author__ = 'Hsiaoming Yang <[email protected]>'
__homepage__ = 'https://github.com/lepture/python-livereload'

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def version():
url='https://github.com/lepture/python-livereload',
packages=['livereload', 'livereload.management.commands'],
description='Python LiveReload is an awesome tool for web developers',
long_description_content_type='text/x-rst',
long_description=fread('README.rst'),
entry_points={
'console_scripts': [
Expand Down

0 comments on commit f14bd7e

Please sign in to comment.