Skip to content

Commit 1bfb669

Browse files
authored
Merge pull request #25 from basecrm/rc1.2.4
Release 1.2.4
2 parents 33484cb + 9580eff commit 1bfb669

File tree

5 files changed

+20
-4
lines changed

5 files changed

+20
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
## CHANGELOG
22

3+
### v1.2.4 (2017-11-23)
4+
5+
**Features and Improvements**
6+
7+
* New resources:
8+
* Order
9+
* LineItem
10+
* Product
11+
* LeadSource
12+
* DealSource
13+
14+
**Fixes**
15+
16+
* python3 and python2.6 compatible print statement
17+
18+
319
### v1.2.3 (2017-06-08)
420

521
**Fixes**

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.3
1+
1.2.4

basecrm/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, **options):
3030
self.verify_ssl = options['verify_ssl'] if 'verify_ssl' in options else True
3131

3232
if self.verbose:
33-
print("BaseCRM client configuration: {}".format(self.__dict__))
33+
print("BaseCRM client configuration: {0}".format(self.__dict__))
3434

3535
def validate(self):
3636
"""Validates whether a configuration is valid.

basecrm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Current client version.
33
"""
4-
VERSION = '1.2.3'
4+
VERSION = '1.2.4'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='basecrm',
12-
version='1.2.3',
12+
version='1.2.4',
1313
description='BaseCRM Official API V2 library client for Python',
1414
long_description=README,
1515
author='BaseCRM developers',

0 commit comments

Comments
 (0)