-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from jamstackpy/refact
- Loading branch information
Showing
22 changed files
with
308 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
.idea/ | ||
# C extensions | ||
*.so | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,36 @@ | ||
# CHANGELOGS | ||
|
||
## 1.1.0 | ||
|
||
* Bulk refactors and code documentation | ||
* New commands for `static.py` files | ||
* `--serve` for livewatch changes | ||
* `--watch` for watch specific files and folders. | ||
* `--port` especiffy serve port | ||
|
||
## 1.0.0 | ||
|
||
* Back to namespace method for write templates names | ||
* Example: `html5up/massively` instead of just `massively` | ||
* Template assets are not included in the library to minimize the size of the library, they were moved to a [separate repository](https://github.com/jamstackpy/jamstack-templates). | ||
* Example: `html5up/massively` instead of just `massively` | ||
* Template assets are not included in the library to minimize the size of the library, they were moved to | ||
a [separate repository](https://github.com/jamstackpy/jamstack-templates). | ||
|
||
## 0.1.0 | ||
|
||
* Improve **Plain** template | ||
* Add new templates (massively, phantom) | ||
* When creating a project, instead of writing the template like this: **html5up/massively**, you can use the name directly, i.e. **massively** | ||
* When creating a project, instead of writing the template like this: **html5up/massively**, you can use the name | ||
directly, i.e. **massively** | ||
* The assets of each template are now included in the library | ||
|
||
## 0.0.4 | ||
|
||
* Add README.md info | ||
|
||
## 0.0.3 | ||
|
||
* Add plain template | ||
|
||
## 0.0.1 | ||
|
||
* Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version_info = (1, 0, 0) | ||
__version__ = ".".join([str(v) for v in version_info]) | ||
version_info = (1, 1, 0) | ||
__version__ = ".".join(map(str, version_info)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.