Skip to content

Commit 9b9d534

Browse files
committed
Merge branch 'staging' into production
2 parents da1a743 + b0d16ad commit 9b9d534

5 files changed

Lines changed: 158 additions & 592 deletions

File tree

.flake8

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[flake8]
2+
ignore =
3+
E121,
4+
E126,
5+
E127,
6+
E128,
7+
E203,
8+
E225,
9+
E226,
10+
E231,
11+
E241,
12+
E251,
13+
E261,
14+
E265,
15+
E302,
16+
E303,
17+
E305,
18+
E402,
19+
E501,
20+
E741,
21+
W291,
22+
W292,
23+
W293,
24+
W391,
25+
W503,
26+
W504,
27+
F403,
28+
B007,
29+
B950,
30+
W191,
31+
32+
max-line-length = 200

.mergify.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
pull_request_rules:
2+
- name: Automatic merge on CI success and review
3+
conditions:
4+
- status-success=Sider
5+
- status-success=Semantic Pull Request
6+
- status-success=Codacy Static Code Analysis
7+
- status-success=security/snyk (Bloomstack)
8+
- label!=Don't Merge
9+
- label!=squash
10+
- "#approved-reviews-by>=1"
11+
actions:
12+
merge:
13+
method: merge
14+
- name: Automatic squash on CI success and review
15+
conditions:
16+
- status-success=Sider
17+
- status-success=Codacy Static Code Analysis
18+
- status-success=security/snyk (Bloomstack)
19+
- label!=Don't Merge
20+
- label=squash
21+
- "#approved-reviews-by>=1"
22+
actions:
23+
merge:
24+
method: squash

bloomstack_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import unicode_literals
33

4-
__version__ = '2.1.0'
4+
__version__ = '2.2.0'

0 commit comments

Comments
 (0)