Skip to content

Commit

Permalink
Version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashaag committed Sep 11, 2022
1 parent b0aaf6a commit de1c6d8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.rst
@@ -1,13 +1,17 @@
Changelog
=========

2.0.1 (Sep 11, 2022)
2.0.2 (Sep 11, 2022)
--------------------
- #292: Fix 500 error when accessing history of blob objects (Jelmer Vernooij)
- #293, #294: Handle SymrefLoop (Jelmer Vernooij)
- #294: Add 'main' to the list of default branch names to try (Jelmer Vernooij)
- Update description on PyPI

2.0.1 (Sep 11, 2022)
--------------------
(Broken release)

2.0.0 (Aug 20, 2022)
--------------------
- Remove `bin/klaus` and make it a `console_script` entrypoint instead (Jonas Haag)
Expand Down
2 changes: 1 addition & 1 deletion klaus/__init__.py
Expand Up @@ -12,7 +12,7 @@
from klaus.repo import FancyRepo, InvalidRepo


KLAUS_VERSION = utils.guess_git_revision() or "2.0.1"
KLAUS_VERSION = utils.guess_git_revision() or "2.0.2"


class Klaus(flask.Flask):
Expand Down
7 changes: 3 additions & 4 deletions setup.py
@@ -1,10 +1,9 @@
# encoding: utf-8

import os
from setuptools import setup
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
long_description = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()

def install_data_files_hack():
# This is a clever hack to circumvent distutil's data_files
Expand All @@ -30,7 +29,7 @@ def install_data_files_hack():

setup(
name="klaus",
version="2.0.1",
version="2.0.2",
author="Jonas Haag",
author_email="jonas@lophus.org",
packages=["klaus", "klaus.contrib"],
Expand Down

0 comments on commit de1c6d8

Please sign in to comment.