Browse Source

release/0.4

tags/v0.4^0
Ben Kurtovic 7 years ago
parent
commit
4d1989609a
4 changed files with 7 additions and 6 deletions
  1. +1
    -1
      CHANGELOG
  2. +1
    -1
      LICENSE
  3. +3
    -3
      gitup/__init__.py
  4. +2
    -1
      setup.py

+ 1
- 1
CHANGELOG View File

@@ -1,4 +1,4 @@
v0.4 (unreleased):
v0.4 (released January 17, 2017):

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


+ 1
- 1
LICENSE View File

@@ -1,4 +1,4 @@
Copyright (C) 2011-2016 Ben Kurtovic <ben.kurtovic@gmail.com>
Copyright (C) 2011-2017 Ben Kurtovic <ben.kurtovic@gmail.com>

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


+ 3
- 3
gitup/__init__.py View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011-2016 Ben Kurtovic <ben.kurtovic@gmail.com>
# Copyright (C) 2011-2017 Ben Kurtovic <ben.kurtovic@gmail.com>
# Released under the terms of the MIT License. See LICENSE for details.

"""
@@ -8,7 +8,7 @@ gitup: the git repository updater
"""

__author__ = "Ben Kurtovic"
__copyright__ = "Copyright (C) 2011-2016 Ben Kurtovic"
__copyright__ = "Copyright (C) 2011-2017 Ben Kurtovic"
__license__ = "MIT License"
__version__ = "0.4.dev0"
__version__ = "0.4"
__email__ = "ben.kurtovic@gmail.com"

+ 2
- 1
setup.py View File

@@ -19,7 +19,7 @@ setup(
name = "gitup",
packages = find_packages(),
entry_points = {"console_scripts": ["gitup = gitup.script:run"]},
install_requires = ["GitPython >= 2.0.5", "colorama >= 0.3.7"],
install_requires = ["GitPython >= 2.1.1", "colorama >= 0.3.7"],
version = __version__,
author = "Ben Kurtovic",
author_email = "ben.kurtovic@gmail.com",
@@ -43,6 +43,7 @@ setup(
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Version Control"
]
)

Loading…
Cancel
Save