Skip to content

Commit

Permalink
chore(release): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
TheKevJames committed Aug 12, 2020
1 parent 5e05654 commit e31c265
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="2.1.2"></a>
## 2.1.2 (2020-08-12)

#### Features

* **circleci:** support parallel builds (#233) ([5e05654c](5e05654c))
Note: this is partially a fix for the `--finish` command
introduced in v2.1.0, which did not seem to work for some CircleCI
users.


<a name="2.1.1"></a>
## 2.1.1 (2020-07-08)

Expand Down
3 changes: 2 additions & 1 deletion coveralls/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ def load_config_from_buildkite():
@staticmethod
def load_config_from_circle():
pr = os.environ.get('CI_PULL_REQUEST', '').split('/')[-1] or None
return 'circle-ci', os.environ.get('CIRCLE_BUILD_NUM'), os.environ.get('CIRCLE_WORKFLOW_ID'), pr
number = os.environ.get('CIRCLE_WORKFLOW_ID')
return 'circle-ci', os.environ.get('CIRCLE_BUILD_NUM'), number, pr

def load_config_from_github(self):
service = 'github'
Expand Down
2 changes: 1 addition & 1 deletion coveralls/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.1'
__version__ = '2.1.2'

0 comments on commit e31c265

Please sign in to comment.