Skip to content

Commit

Permalink
bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
artbycrunk committed Oct 6, 2019
1 parent 389513c commit 78024c0
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 deletions.
11 changes: 6 additions & 5 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.1.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}-{release}{build}
{major}.{minor}.{patch}

[bumpversion:part:build]

Expand All @@ -15,4 +15,5 @@ serialize =

[bumpversion:file:README.md]
search = version-{current_version}-green.svg
replace = version-{new_version}-green.svg
replace = version-{new_version}-green.svg

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## Version 1.1.0
* Ability to skip certain git directories via config.
* Correctly use unicode symbols for fallback to python2.
* Fix bug with symbol mapper referesh.
* Ability to override bg and fg color of segments via config.
* Added version argument to cli.
* Added pytest, flake8 and pylint configs
* Added more tests


## Version 1.0.1
* Add tcsh new line support

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hyper-prompt

[![Version](https://img.shields.io/badge/version-1.0.1-green.svg)]()
[![Version](https://img.shields.io/badge/version-1.1.0-green.svg)]()

[![Average time to resolve an issue](https://isitmaintained.com/badge/resolution/artbycrunk/hyper-prompt.svg)](https://isitmaintained.com/project/artbycrunk/hyper-prompt "Average time to resolve an issue")
[![Percentage of issues still open](https://isitmaintained.com/badge/open/artbycrunk/hyper-prompt.svg)](https://isitmaintained.com/project/artbycrunk/hyper-prompt "Percentage of issues still open")
Expand Down
2 changes: 1 addition & 1 deletion hyper_prompt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Hyper prompt."""

__version__ = "1.0.1"
__version__ = "1.1.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

setup(
name="hyper-prompt",
version="1.0.1",
version="1.1.0",
description="Highly Customize-able prompt for your shell",
author="Savio Fernandes",
author_email="[email protected]",
license="MIT",
url="https://github.com/artbycrunk/hyper-prompt",
download_url = 'https://github.com/artbycrunk/hyper-prompt/archive/1.0.1.tar.gz',
download_url = 'https://github.com/artbycrunk/hyper-prompt/archive/1.1.0.tar.gz',
keywords = ['PROMPTS', 'SHELL', 'BASH', "ZSH"],
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 78024c0

Please sign in to comment.