Skip to content

Commit c753f9a

Browse files
authored
Merge pull request #11 from NarrativeScience/W-11900045/cci-branches
@W-11900045: Use Master Branch
2 parents fa27c4f + b4db3c1 commit c753f9a

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ jobs:
285285
- circleci-cli/install
286286
- restore-test-cache
287287
- poetry-configure
288+
- bump-branch-version
288289
- run:
289290
command: poetry install
290291
name: Install dependencies
@@ -348,21 +349,21 @@ workflows:
348349
context: opensource
349350
filters:
350351
branches:
351-
only: main
352+
only: master
352353
pull-request-tests:
353354
jobs:
354355
- build-test:
355356
context: lexio-package
356357
filters:
357358
branches:
358359
ignore:
359-
- main
360+
- master
360361
- send-slack-on-pr-success:
361362
context: lexio-package
362363
filters:
363364
branches:
364365
ignore:
365-
- main
366+
- master
366367
requires:
367368
- build-test
368369

.circleci/jobs/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ steps:
99
- circleci-cli/install
1010
- restore-test-cache
1111
- poetry-configure
12-
# - bump-branch-version
12+
- bump-branch-version
1313
- run:
1414
name: Install dependencies
1515
command: poetry install

.circleci/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ jobs:
33
context: opensource
44
filters:
55
branches:
6-
only: main
6+
only: master

.circleci/workflows/pull-request-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ jobs:
44
filters:
55
branches:
66
ignore:
7-
- main
7+
- master
88
- send-slack-on-pr-success:
99
requires:
1010
- build-test
1111
context: lexio-package
1212
filters:
1313
branches:
1414
ignore:
15-
- main
15+
- master

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sfn_workflow_client"
3-
version = "1.0.0"
3+
version = "1.1.0"
44
description = "Enhanced, asyncio-compatible client for AWS Step Functions."
55
authors = ["Jonathan Drake <[email protected]>"]
66
license = "BSD-3-Clause"

sfn_workflow_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Enhanced, asyncio-compatible client for AWS Step Functions."""
22

3-
__version__ = "1.0.0"
3+
__version__ = "1.1.0"

0 commit comments

Comments
 (0)