File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,26 @@ stages:
23
23
jobs :
24
24
include :
25
25
- stage : ' Lint markdown files'
26
- language : ruby
27
- rvm : 2.4.1
28
26
os : linux
27
+ language : generic
29
28
install : gem install awesome_bot
30
29
script :
31
30
- find . -type f -name '*.md' -exec awesome_bot {} \;
32
31
notifications :
33
32
email : false
34
33
34
+ - stage : ' Lint markdown files'
35
+ os : linux
36
+ language : generic
37
+ before_install : skip
38
+ install :
39
+ - npm i -g markdown-spellcheck
40
+ before_script :
41
+ - wget --quiet https://raw.githubusercontent.com/optimizely/mdspell-config/master/.spelling
42
+ script :
43
+ - mdspell -a -n -r --en-us '**/*.md'
44
+ after_success : skip
45
+
35
46
- stage : ' Linting'
36
47
language : python
37
48
python : " 2.7"
Original file line number Diff line number Diff line change 1
1
# Optimizely Python SDK Changelog
2
2
3
+ ## 3.4.1
4
+ March 19th, 2020
5
+
6
+ ### Bug Fixes:
7
+ * Updated ` jsonschema ` to address [ installation issue] ( https://github.com/optimizely/python-sdk/issues/232 ) .
8
+
9
+
3
10
## 3.4.0
4
11
January 27th, 2020
5
12
Original file line number Diff line number Diff line change 11
11
# See the License for the specific language governing permissions and
12
12
# limitations under the License.
13
13
14
- version_info = (3 , 4 , 0 )
14
+ version_info = (3 , 4 , 1 )
15
15
__version__ = '.' .join (str (v ) for v in version_info )
Original file line number Diff line number Diff line change 1
- jsonschema==2.6 .0
1
+ jsonschema==3.2 .0
2
2
mmh3==2.5.1
3
3
requests[security]>=2.9.1
You can’t perform that action at this time.
0 commit comments