Skip to content

Commit

Permalink
bump: ✈ v1.0.0 → v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
engineervix committed Sep 30, 2022
1 parent 5fa653e commit fdcc1bf
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 7 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@ All notable changes to this project will be documented here.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project attempts to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v1.0.1](https://github.com/engineervix/ten-lists/compare/v1.0.0...v1.0.1) (2022-09-30)


### 🚀 Features

* set up HTTP security headers ([2652a91](https://github.com/engineervix/ten-lists/commit/2652a911a7780c62b3579eb32f7ea15b80c0704b))


### 🐛 Bug Fixes

* add missing kwarg `content_security_policy` in Talisman init_app ([432cbdf](https://github.com/engineervix/ten-lists/commit/432cbdf289a986a5d9693c4d468346c8913e9025))
* broken HTTP security headers configuration ([be42945](https://github.com/engineervix/ten-lists/commit/be429453fd34565f5a43b89d8a9a615d7681d80c))
* change `permission_policy` to `permissions_policy` in flask-talisman config ([f6d363b](https://github.com/engineervix/ten-lists/commit/f6d363bfb73c159b9ae05debd6951027b6af4150))
* cleanup Content Security Policy config ([18ef459](https://github.com/engineervix/ten-lists/commit/18ef459131655a16497d4cac29365ea8cbdc1972))
* rewrite `autoplay` permissions_policy ([82bea8b](https://github.com/engineervix/ten-lists/commit/82bea8b8328000f5ed59ba50e749b8db98f4dfee))


### 📝 Docs

* add TODO item concerning CDN setup for mp3 files ([5fa653e](https://github.com/engineervix/ten-lists/commit/5fa653eb8e284a1c58111f1aec9045881b6255b8))

## [v1.0.0](https://github.com/engineervix/ten-lists/compare/v0.6.3...v1.0.0) (2022-09-30)


Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ten-lists",
"version": "1.0.0",
"version": "1.0.1",
"description": "This project provides both a CLI and a webapp, which generate a playlist of 10 Bible Chapters (represented by 10 mp3 files) to be listened to on any given day, according to Professor Grant Horner's 10 lists Bible-Reading System.",
"scripts": {
"build": "grunt rm && grunt all",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sections = ["FUTURE", "STDLIB", "FLASK", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDE
default_section = "THIRDPARTY"

[tool.commitizen]
version = "1.0.0"
version = "1.0.1"
version_files = [
# "package.json",
"tenlists/__init__.py",
Expand Down
2 changes: 1 addition & 1 deletion tenlists/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])
2 changes: 1 addition & 1 deletion tenlists/cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])
2 changes: 1 addition & 1 deletion tenlists/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])
2 changes: 1 addition & 1 deletion tenlists/webapp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.0"
__version__ = "1.0.1"
__version_info__ = tuple([int(num) if num.isdigit() else num for num in __version__.replace("-", ".", 1).split(".")])

0 comments on commit fdcc1bf

Please sign in to comment.