Skip to content

Commit

Permalink
bump version to 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Kundert authored and Ken Kundert committed Aug 18, 2020
1 parent ff8d567 commit 68e8cc5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bump.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
date_fmt = 'YYYY-MM-DD'
major = 1
minor = 6
patch = 1
patch = 2
date = [
'engineering_calculator/calculator.py __released__',
'doc/index.rst Date',
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ and uses a text-only user interface.
Installing
----------

| Version: 1.6.1
| Released: 2020-08-14
| Version: 1.6.2
| Released: 2020-08-17
.. image:: https://img.shields.io/travis/KenKundert/ec/master.svg
:target: https://travis-ci.org/KenKundert/ec
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Engineering Calculator
======================

:Author: Ken Kundert <ec@nurdletech.com>
:Date: 2020-08-14
:Version: 1.6.1
:Date: 2020-08-17
:Version: 1.6.2

This calculator is noteworthy in that it employs a stack model of computation␣
(Reverse Polish Notation); it supports numbers with SI scale factors and units;␣
Expand Down
4 changes: 2 additions & 2 deletions engineering_calculator/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
import sys

# Set the version information {{{1
__version__ = '1.6.1'
__released__ = '2020-08-14'
__version__ = '1.6.2'
__released__ = '2020-08-17'

# Utility functions {{{1
italicsRegex = re.compile(r'#\{(\w+)\}')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name = 'engineering-calculator',
version = '1.6.1',
version = '1.6.2',
description = 'engineering calculator',
long_description = open('README.rst').read(),
author = "Ken Kundert",
Expand Down

0 comments on commit 68e8cc5

Please sign in to comment.