Skip to content

Commit

Permalink
v0.3.1 — Fix some vertical text positioning
Browse files Browse the repository at this point in the history
- Adjusted the vertical positioning of text so that it no longer intersects the bottom of the event box
- Support Python 3.8
  • Loading branch information
jwodder committed Jan 24, 2020
1 parent 2eed0a5 commit 6532fae
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
v0.4.0 (in development)
-----------------------
v0.3.1 (2020-01-24)
-------------------
- Adjusted the vertical positioning of text so that it no longer intersects the
bottom of the event box
- Support Python 3.8

v0.3.0 (2019-05-09)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014, 2017-2019 John Thorvald Wodder II
Copyright (c) 2014, 2017-2020 John Thorvald Wodder II

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,4 @@ The following input file::

produces (using the default options) an output file that looks like this:

.. image:: https://github.com/jwodder/schedule/raw/master/examples/example01.png
.. image:: https://github.com/jwodder/schedule/raw/v0.3.1/examples/example01.png
2 changes: 2 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
headers, and times separately?
- Change `Schedule` to a `reportlab.*.Flowable` subclass (or factory
thereof?)
- Add a function that takes loaded YAML data, renders a schedule, and
returns a `Canvas` object? Saves a `Canvas` object to a given path?

- Documentation:
- Add more docstrings
Expand Down
2 changes: 1 addition & 1 deletion pdfschedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
more information.
"""

__version__ = '0.4.0.dev1'
__version__ = '0.3.1'
__author__ = 'John Thorvald Wodder II'
__author_email__ = 'pdfschedule@varonathe.org'
__license__ = 'MIT'
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
License :: OSI Approved :: MIT License
Environment :: Console
Expand Down

0 comments on commit 6532fae

Please sign in to comment.