Skip to content

Commit

Permalink
Release 1.0.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
greyli committed Jul 4, 2024
1 parent ce57b16 commit 0686530
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ name: build
on:
push:
branches:
- master
- main
pull_request:
branches:
- master
- main

jobs:
lint:
Expand All @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
python: ['3.8', '3.9', '3.10', '3.11', '3.12']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down
12 changes: 3 additions & 9 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,11 @@ Changelog
1.0.0
-----

Release date: -

- Disable the version check for old CKEditor versions.


0.5.2
-----

Release date: N/A
Release date: 2024/7/5

- Add ``cleanify`` function to ``flask_ckeditor.utils`` for HTML sanitization.
- Disable the version check for old CKEditor versions.
- Update the default CDN library version to 4.22.1.


0.5.1
Expand Down
2 changes: 1 addition & 1 deletion flask_ckeditor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class _CKEditor(object):
"""The class implement functions for Jinja2 template."""

@staticmethod
def load(custom_url=None, pkg_type=None, serve_local=None, version='4.14.0'):
def load(custom_url=None, pkg_type=None, serve_local=None, version='4.22.1'):
"""Load CKEditor resource from CDN or local.
:param custom_url: The custom resource url to use, build your CKEditor
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='Flask-CKEditor',
version='1.0.0-dev',
version='1.0.0',
url='http://github.com/helloflask/flask-ckeditor',
license='MIT',
author='Grey Li',
Expand All @@ -43,11 +43,11 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39, py310, py311, docs
envlist = py38, py39, py310, py311, py312, docs
skip_missing_interpreters = true
# skipsdist = true

Expand Down

0 comments on commit 0686530

Please sign in to comment.