Skip to content

Commit dd5c29b

Browse files
olmokramerlibre-man
authored andcommitted
Bump version (#36)
* Bump version * Add changelog * Fix latest version links * Add changelog to docs/index.rst
1 parent b0139e2 commit dd5c29b

5 files changed

Lines changed: 42 additions & 3 deletions

File tree

codegra_fs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SPDX-License-Identifier: AGPL-3.0-only
22

3-
__version__ = (0, 4, 2)
3+
__version__ = (0, 5, 0)
44
__author__ = 'Olmo Kramer, Thomas Schaper'
55
__email__ = 'info@CodeGra.de'
66
__license__ = 'AGPL-3.0-only'

codegra_fs/cgfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2050,7 +2050,7 @@ def check_version() -> None:
20502050
'You are running an outdated version of'
20512051
' CGFS, please consider upgrading.'
20522052
),
2053-
'You can do this at https://codegra.de/codegra_fs/latest/',
2053+
'You can do this at https://codegra.de/codegra_fs/latest',
20542054
]
20552055
print('-' * (max(len(l) for l in msg) + 4), file=sys.stderr)
20562056
for line in msg:

codegra_fs/gui.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ def __create_start_form(self) -> QWidget:
445445
version_label = QLabel(
446446
'A new version of CodeGra.fs is available.\nYou can download'
447447
' it at <a href="https://codegra.de/codegra_fs/latest"'
448-
' >https://codegra.de/codegra_fs/latest/</a>'
448+
' >https://codegra.de/codegra_fs/latest</a>'
449449
)
450450
version_label.setTextFormat(Qt.RichText)
451451
version_label.setTextInteractionFlags(Qt.TextSelectableByMouse)

docs/changelog.rst

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
Changelog
2+
==========
3+
4+
Version 0.5.0
5+
-------------
6+
7+
**Released**: Februari 14th, 2019
8+
9+
**Features & Updates**
10+
11+
- Support Python 3.5 & 3.6 `(#35)
12+
<https://github.com/CodeGra-de/CodeGra.fs/pull/35>`__: Tests are now also run
13+
on Python 3.5 and 3.6 to ensure compatibility with older systems.
14+
- Handle duplicate names better `(#35)
15+
<https://github.com/CodeGra-de/CodeGra.fs/pull/35>`__: When two objects (i.e.
16+
submissions, assignments, etc.) had the same name, only one would be
17+
displayed in the filesystem. It was indeterminate which one would be shown,
18+
so this could cause a lot of confusion. This patch appends the creation
19+
date/time, so two objects with the same name can be distinguished.
20+
- Handle group names `(#35)
21+
<https://github.com/CodeGra-de/CodeGra.fs/pull/35>`__ `(#38)
22+
<https://github.com/CodeGra-de/CodeGra.fs/pull/38>`__: When an assignment is
23+
a group assignment, the filesystem now shows the group names, and adds a
24+
special `.cg-group-members` file in submission directories.
25+
26+
Version 0.4.2
27+
-------------
28+
29+
**Released**: October 30th, 2019
30+
31+
**Features & Updates**
32+
33+
- GUI to control CodeGra.fs `(#29)
34+
<https://github.com/CodeGra-de/CodeGra.fs/pull/29>`__: The CodeGrade
35+
filesystem now comes with a graphical interface where various settings can be
36+
managed.
37+
- Experimental Windows 10 support `(#29)
38+
<https://github.com/CodeGra-de/CodeGra.fs/pull/29>`__.

docs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,5 @@ The code of the CodeGrade filesystem is open-source and can be found on
2323
install
2424
usage
2525
plugins
26+
changelog
2627
Back to CodeGrade Documentation <https://docs.codegra.de>

0 commit comments

Comments
 (0)