Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
release v1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
enchant97 committed Feb 17, 2024
1 parent 3eaff63 commit e690d07
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.10.0] - 2024-02-17
### Changed
- Bump deps & migrate some code
- Use hatch for python management

## [1.9.0] - 2023-02-16
### Added
- #27; :construction: Experimental S3 storage support
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

A fast and minimal paste bin.

## Looking For Maintainers
I don't find myself using this app much and not having infinite time; would like some assistance on maintaining this project. Since this project is mostly fully feature complete, I am looking for someone who can perform small maintenance.
## Stopping Development
V1.10 will be the last update that I will be developing as I don't find myself using this project and I want to focus on some other cool projects! This app is feature complete anyway.

You can contact at the links shown [here](https://github.com/enchant97#-how-to-reach-me) (or raise an issue), if you are interested.
I am open to accepting anyone that wishes to maintain this project you can react me [here](https://github.com/enchant97#-how-to-reach-me).

> This project is **not** being abandoned. Any security or major fixes will still be done, if needed.
If you use this in a business environment and wish to have maintenance updates you can reach me at the links shown on my [profile](https://github.com/enchant97#-how-to-reach-me).

## Features
- Quickly paste and save, to share some text
Expand Down Expand Up @@ -52,7 +52,7 @@ This is a simple script allowing the creation of pastes from the command-line. Y
The name was chosen not because the project is written badly, but because you use it so fast without a care in the world and "Fast Paste" was already taken!

## License
This project is Copyright (c) 2023 Leo Spratt, licences shown below:
This project is Copyright (c) 2024 Leo Spratt, licences shown below:

Code

Expand Down
1 change: 1 addition & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Please read these notes before continuing.
- If you have a high amount of clients, use Redis caching and set `WORKERS` to match the physical cpu cores
- If using S3 the bucket should already be created with read/write access
- S3 currently has been tested with [MinIO](https://min.io/) (can self-host)
- Currently supported Python version is `3.12`

## Configuration
All configs shown here should be given as environment variables.
Expand Down
2 changes: 1 addition & 1 deletion paste_bin/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.0"
__version__ = "1.10.0"
2 changes: 1 addition & 1 deletion paste_bin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def _reset_app():


def create_app():
app.json = CustomJSONProvider
app.json = CustomJSONProvider # type: ignore
app.url_map.converters["id"] = PasteIdConverter

settings = get_settings()
Expand Down

0 comments on commit e690d07

Please sign in to comment.