diff --git a/.python-version b/.python-version index ddb82ca1..922cd6ae 100644 --- a/.python-version +++ b/.python-version @@ -1,5 +1,4 @@ -3.6.6 -3.5.5 -3.4.8 +3.7.2 +3.6.8 +3.5.6 2.7.15 -3.7.0 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 875d0397..b6babe9e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,8 @@ Changelog ========= -(development) -------------- +3.2 (2019-06-24) +---------------- - "Edit Snippet" panel is now hidden by default to remove visual noise. - Linux/Unix browsers now use Ctrl+Enter as a shortcut to submit the form. @@ -10,6 +10,7 @@ Changelog - Added "View Raw" option to optionally render the 'raw' snippet content with a template rather served as plain text. This was added to hinder abuse. - Added "Json" to the list of lexers. +- Added 'JSX/React" to the list of lexers. 3.1 (2019-05-16) ---------------- diff --git a/dpaste/__init__.py b/dpaste/__init__.py index 73d3d30f..240da930 100644 --- a/dpaste/__init__.py +++ b/dpaste/__init__.py @@ -1,4 +1,4 @@ -VERSION = (3, 1) +VERSION = (3, 2) __version__ = '{major}.{minor}{rest}'.format( major=VERSION[0],