Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.0.1

* Small bug fixes regarding Python 3 support

## v1.0.0

* Drop Python 2.7 support
Expand Down
2 changes: 1 addition & 1 deletion actions/lib/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def post(self, url, project, ref, trigger_token, variables, *args, **kwargs):
params = {"token": trigger_token,
"ref": ref}
if variables:
for key, val in variables.iteritems():
for key, val in variables.items():
params.update({"variables[{}]".format(key): val})

return self._post(url,
Expand Down
2 changes: 1 addition & 1 deletion pack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: gitlab
description: GitLab Rest API
keywords:
- gitlab
version: 1.0.0
version: 1.0.1
author: Daniel Chamot
email: daniel@nullkarma.com
python_versions:
Expand Down