Skip to content

Commit 4d19896

Browse files
committed
release/0.4
1 parent f7a060a commit 4d19896

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v0.4 (unreleased):
1+
v0.4 (released January 17, 2017):
22

33
- Added a `--prune` flag to delete remote-tracking branches that no longer
44
exist on their remote after fetching.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2011-2016 Ben Kurtovic <[email protected]>
1+
Copyright (C) 2011-2017 Ben Kurtovic <[email protected]>
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

gitup/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2011-2016 Ben Kurtovic <[email protected]>
3+
# Copyright (C) 2011-2017 Ben Kurtovic <[email protected]>
44
# Released under the terms of the MIT License. See LICENSE for details.
55

66
"""
77
gitup: the git repository updater
88
"""
99

1010
__author__ = "Ben Kurtovic"
11-
__copyright__ = "Copyright (C) 2011-2016 Ben Kurtovic"
11+
__copyright__ = "Copyright (C) 2011-2017 Ben Kurtovic"
1212
__license__ = "MIT License"
13-
__version__ = "0.4.dev0"
13+
__version__ = "0.4"
1414
__email__ = "[email protected]"

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
name = "gitup",
2020
packages = find_packages(),
2121
entry_points = {"console_scripts": ["gitup = gitup.script:run"]},
22-
install_requires = ["GitPython >= 2.0.5", "colorama >= 0.3.7"],
22+
install_requires = ["GitPython >= 2.1.1", "colorama >= 0.3.7"],
2323
version = __version__,
2424
author = "Ben Kurtovic",
2525
author_email = "[email protected]",
@@ -43,6 +43,7 @@
4343
"Programming Language :: Python :: 3.3",
4444
"Programming Language :: Python :: 3.4",
4545
"Programming Language :: Python :: 3.5",
46+
"Programming Language :: Python :: 3.6",
4647
"Topic :: Software Development :: Version Control"
4748
]
4849
)

0 commit comments

Comments
 (0)