Skip to content

Commit

Permalink
Merge pull request #252 from ThomasWaldmann/rel060
Browse files Browse the repository at this point in the history
Release 0.6.0
  • Loading branch information
ThomasWaldmann authored Nov 14, 2020
2 parents 8236af0 + aa626f4 commit fa8ce28
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
22 changes: 11 additions & 11 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
ChangeLog
=========

Release 0.6.0 (not released yet)
--------------------------------
Release 0.6.0 (2020-11-14)
--------------------------

Compatibility:

* drop python 3.4 support, fixes #195
* drop python 3.4 support, #195
* note: this will likely be the last bepasty release supporting
Python 2.x (2.7) and 3.5 (both are not supported by Python
development any more).

Fixes:

* fix bad types for b64(en|de)code, fixes #200
* fix bad types for b64(en|de)code, #200
* use simple links in list/display view instead of <form> tags
* security fix: if PERMISSIONS in config are changed, we invalidate old
clientside cookies now.
Expand All @@ -24,9 +24,9 @@ Fixes:

New features:

* add support for asciinema recordings, fixes #175
* show QR code with link to bepasty item, fixes #176
* support text/x-bepasty-redirect for URL redirects
* add support for asciinema recordings, #175
* show QR code with link to bepasty item, #176
* support text/x-bepasty-redirect for URL redirects:
just paste the target URL and choose this as mimetype to create a
redirect. you may use the delay=<seconds> url argument to adjust
the delay, default is 3s.
Expand All @@ -42,10 +42,10 @@ New features:

Other changes:

* support / test on py38, py39, fixes #223
* move development section from README to project docs, fixes #192
* use twine to upload releases, qubes gpg support, fixes #197
* add config for readthedocs, fixes #191
* support / test on py38, py39, #223
* move development section from README to project docs, #192
* use twine to upload releases, qubes gpg support, #197
* add config for readthedocs, #191
* code: some cleanups, fix warnings, fix minor errors
* theme:

Expand Down
4 changes: 3 additions & 1 deletion docs/source/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ You can install bepasty either from PyPi (latest release) or from the git reposi
# from PyPi:
pip install bepasty

# if you'ld like to have python-magic to help determining files' mime types, use:
pip install bepasty[magic]

# from git repo
pip install -e git+https://github.com/bepasty/bepasty-server.git#egg=bepasty-server


Configuring bepasty
-------------------
Before you can use bepasty, you need to carefully configure it (it won't work in default configuration and most of
Expand Down
2 changes: 0 additions & 2 deletions docs/source/rest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ GET Response by the server:
available.

MAX_BODY_SIZE

The maximum size of a post request's body. This is limited by
the webserver and other middleware. See the documentation for
more information. This also gives you the maximum size for the
Expand Down Expand Up @@ -124,7 +123,6 @@ POST Request by the client:
characters.

*Maxlife-Unit*

The maxlife-unit can be used with the maxlife-value header to
define a lifetime for the file that is uploaded. The unit has
to be one of these::
Expand Down
1 change: 1 addition & 0 deletions docs/source/user.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ bepasty also supports directly displaying the data, for these content types:
* lists of files (if a list item was created at upload time)
* text files (highlighted depending on the content-type)
* PDFs (if you browser can render PDFs or has a plugin doing that)
* asciinema cast files
* image files, like jpeg, png and svg
* audio/video files (using the html5 player widget, format support might depend on your browser and OS)
* for other file types, you need to download them and open them with the appropriate application
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
],
extras_require={
"magic": [
'python-magic'
'python-magic',
],
},
classifiers=[
Expand Down

0 comments on commit fa8ce28

Please sign in to comment.