Skip to content

Commit 408358c

Browse files
committed
[0.7.18] Release
**Miscellaneous**: Changed: * Move cache to dot directory Added: * No reload decorators * PyGame plugin * Older mac os systems compatibility * No reload decorators validation Fixed: * Flask request object update issues * Python 3.6 compatibility issues Removed: * Full reload feature
1 parent ba50dd7 commit 408358c

File tree

77 files changed

+176
-1392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+176
-1392
lines changed

.gitignore

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
./build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
wheels/
22+
*.egg-info/
23+
.installed.cfg
24+
*.egg
25+
MANIFEST
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
coverage.xml
44+
*.cover
45+
.hypothesis/
46+
.pytest_cache/
47+
48+
# Translations
49+
*.mo
50+
*.pot
51+
52+
# Django stuff:
53+
*.log
54+
db.sqlite3
55+
56+
# Flask stuff:
57+
instance/
58+
.webassets-cache
59+
60+
# Scrapy stuff:
61+
.scrapy
62+
63+
# Sphinx documentation
64+
docs/_build/
65+
66+
# celery beat schedule file
67+
celerybeat-schedule
68+
69+
# Environments
70+
.venv*/
71+
72+
# Spyder project settings
73+
.spyderproject
74+
.spyproject
75+
76+
77+
# mkdocs documentation
78+
/site
79+
80+
# mypy
81+
.mypy_cache/
82+
83+
84+
__pycache__
85+
86+
87+
88+
# bin files that are downloaded on bootstrap
89+
.deps
90+
91+
sandbox*
92+
93+
pip-wheel-metadata
94+
95+
*.pyi
96+
*.c
97+
smartreloader.build
98+
99+
__obfuscated__
100+
__normalised__
101+
102+
103+
build
104+
105+
wheel_builder/builder
106+
107+
reloader/.build_cache
108+
wheels
109+
110+
common

CHANGELOG.rst

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@ Change Log
22
##########
33

44

5+
0.7.18
6+
-------
7+
8+
**Miscellaneous**:
9+
10+
Changed:
11+
* Move cache to dot directory
12+
13+
Added:
14+
* No reload decorators
15+
* PyGame plugin
16+
* Older mac os systems compatibility
17+
* No reload decorators validation
18+
19+
Fixed:
20+
* Flask request object update issues
21+
* Python 3.6 compatibility issues
22+
23+
Removed:
24+
* Full reload feature
25+
526
0.7.17
627
-------
728

README.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11

2+
3+
4+
25
.. raw:: html
36

47
<p align="center">
@@ -16,6 +19,9 @@
1619
</p>
1720

1821

22+
23+
24+
1925
Details
2026
#######
2127

__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.7.17"
1+
version = "0.7.18"

docs/docutils.conf

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[general]
22

3+
title: Reloadium - hot reloading aka edit and continue for Python
34
stylesheet-path: main.css

index.html

+9-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44
<head>
55
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
66
<meta name="generator" content="Docutils 0.18.1: http://docutils.sourceforge.net/" />
7-
<title>README.rst</title>
7+
<title>Reloadium - hot reloading aka edit and continue for Python</title>
8+
<meta content="Reloadium adds hot reloading also called &quot;edit and continue&quot; functionality to any Python application" name="description" />
9+
<meta content="hot reloading, python, edit and continue, reloading" name="keywords" />
10+
<meta content="czrLgoG-sci14goKpSq8c4677_DHahtwk6caOVdmV8E" name="google-site-verification" />
811
<style type="text/css">
912

1013
body {
@@ -24,7 +27,11 @@
2427
</p>
2528
<h4 align="center"> The missing element of Python - Advanced Hot Reloading </h4><div class="center"><p align="center">
2629
<img src="media/example.gif" width="715px" alt="Example">
27-
</p></div><div class="section" id="details">
30+
</p></div><div class="section" id="repository-url">
31+
<h1>Repository URL</h1>
32+
<p><a class="reference external" href="https://github.com/reloadware/reloadium">https://github.com/reloadware/reloadium</a></p>
33+
</div>
34+
<div class="section" id="details">
2835
<h1>Details</h1>
2936
<div class="line-block">
3037
<div class="line">Reloadium adds hot reloading also called &quot;edit and continue&quot; functionality to any Python application</div>

media/logo.png

27.1 KB
Loading

media/plugin_install.png

33.7 KB
Loading

0 commit comments

Comments
 (0)