Skip to content

Commit

Permalink
Bump version, minorly improve docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Nov 25, 2023
1 parent 91d2ed3 commit 4f75d15
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# PyHTML Enhanced

A library for building HTML documents with a simple and learnable syntax,
inspired by, and similar to
[Cenk Altı's original PyHTML library](https://github.com/cenkalti/pyhtml), but
inspired by (and similar to)
[Cenk Altı's PyHTML library](https://github.com/cenkalti/pyhtml), but
with improved documentation and type safety.

## Features
Expand Down
11 changes: 6 additions & 5 deletions pyhtml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
"""# PyHTML Enhanced
"""
# PyHTML Enhanced
A library for building HTML documents with a simple and learnable syntax,
inspired by, and similar to
[Cenk Altı's original PyHTML library](https://github.com/cenkalti/pyhtml), but
inspired by (and similar to)
[Cenk Altı's PyHTML library](https://github.com/cenkalti/pyhtml), but
with improved documentation and type safety.
## Features
Expand Down Expand Up @@ -235,13 +236,13 @@
Source code for the library is open source, using the
[MIT license](https://choosealicense.com/licenses/mit/). A copy of the license
text is available in [`LICENSE.md`](https://github.com/COMP1010UNSW/pyhtml-enhanced/blob/main/LICENSE.md)
text is available in [LICENSE.md](https://github.com/COMP1010UNSW/pyhtml-enhanced/blob/main/LICENSE.md)
### Documentation
Documentation is copied from MDN Web Docs, and is license under
[CC-BY-SA-2.5](https://creativecommons.org/licenses/by-sa/2.5/). A copy of the
license text is available in [`LICENSE_DOCS.md`](https://github.com/COMP1010UNSW/pyhtml-enhanced/blob/main/LICENSE_DOCS.md)
license text is available in [LICENSE_DOCS.md](https://github.com/COMP1010UNSW/pyhtml-enhanced/blob/main/LICENSE_DOCS.md)
"""
# Disable Flake8, since it really doesn't like our docstring above
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyhtml-enhanced"
version = "1.0.4"
version = "1.1.0"
description = "A library for building HTML documents with a simple and learnable syntax"
authors = ["Miguel Guthridge <miguel.guthridge@unsw.edu.au>"]
license = "MIT"
Expand Down

0 comments on commit 4f75d15

Please sign in to comment.