diff --git a/ablog/__init__.py b/ablog/__init__.py index ada3942..ac8a1d3 100755 --- a/ablog/__init__.py +++ b/ablog/__init__.py @@ -10,7 +10,7 @@ from .post import (PostDirective, PostListDirective, UpdateDirective, generate_archive_pages, generate_atom_feeds, missing_reference) -__version__ = '0.9.1' +__version__ = '0.9.2' __all__ = ['setup'] diff --git a/ablog/blog.py b/ablog/blog.py index b22c61c..f20c592 100644 --- a/ablog/blog.py +++ b/ablog/blog.py @@ -78,8 +78,8 @@ CONFIG = [ ('fontawesome_included', False, True), ('fontawesome_css_file', '', True), - ('post_date_format', '%-d %B %Y', True), - ('post_date_format_short', '%-d %B', True), + ('post_date_format', '%d %B %Y', True), + ('post_date_format_short', '%d %B', True), ('post_auto_image', 0, True), ('post_auto_excerpt', 1, True), ('post_redirect_refresh', 5, True), diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..b6e783e --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,52 @@ +# AppVeyor.com is a Continuous Integration service to build and run tests under +# Windows + +environment: + + global: + PYTHON: "C:\\conda" + MINICONDA_VERSION: "latest" + # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the + # /E:ON and /V:ON options are not enabled in the batch script intepreter + # See: http://stackoverflow.com/a/13751649/163740 + CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\ci-helpers\\appveyor\\windows_sdk.cmd" + CONDA_CHANNELS: "conda-forge" + CONDA_DEPENDENCIES: "sphinx werkzeug alabaster invoke graphviz" + PIP_DEPENDENCIES: "sphinx-automodapi" + + matrix: + - PYTHON_VERSION: "2.7" + - PYTHON_VERSION: "3.5" + - PYTHON_VERSION: "3.6" + +matrix: + fast_finish: true + +platform: + - x64 + +install: + - "git clone git://github.com/astropy/ci-helpers.git" + - "powershell ci-helpers/appveyor/install-miniconda.ps1" + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - "activate test" + - "pip install -e ." + +# Not a .NET project, we build Ablog in the install step instead +build: false + +test_script: + - ps: cd docs + - ablog build -T + - ablog build -b latex -T -d .doctrees -w _latex + - ablog build -T -b json + - ablog build -T -b pickle +# - ps: mkdir test +# - ps: cd test +# - ps: echo "ABlog" ABlog Team" "http://ablog.readthedocs.org" | ablog start +# - ablog build +# - ps: mkdir -p test +# - ps: cd test +# - ps: echo "ablog" "ABlog" "ABlog Team" "http://ablog.readthedocs.org" | ablog start +# - ps: cd ablog +# - ablog build diff --git a/docs/release/ablog-v0.9-released.rst b/docs/release/ablog-v0.9-released.rst index e7e49ec..172a528 100644 --- a/docs/release/ablog-v0.9-released.rst +++ b/docs/release/ablog-v0.9-released.rst @@ -40,3 +40,13 @@ ABlog v0.9.1 released :location: World Minor update to remove Ablog{}.format(python_number) exes + +ABlog v0.9.2 released +===================== + +.. post:: March 4, 2018 + :author: Nabil + :category: Release + :location: World + +Fixed Windows String issue