Skip to content

Commit

Permalink
chore(release): Release 3.4.1 (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
aliabbasrizvi committed Mar 19, 2020
1 parent 0770dba commit 8562eee
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,26 @@ stages:
jobs:
include:
- stage: 'Lint markdown files'
language: ruby
rvm: 2.4.1
os: linux
language: generic
install: gem install awesome_bot
script:
- find . -type f -name '*.md' -exec awesome_bot {} \;
notifications:
email: false

- stage: 'Lint markdown files'
os: linux
language: generic
before_install: skip
install:
- npm i -g markdown-spellcheck
before_script:
- wget --quiet https://raw.githubusercontent.com/optimizely/mdspell-config/master/.spelling
script:
- mdspell -a -n -r --en-us '**/*.md'
after_success: skip

- stage: 'Linting'
language: python
python: "2.7"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Optimizely Python SDK Changelog

## 3.4.1
March 19th, 2020

### Bug Fixes:
* Updated `jsonschema` to address [installation issue](https://github.com/optimizely/python-sdk/issues/232).


## 3.4.0
January 27th, 2020

Expand Down
2 changes: 1 addition & 1 deletion optimizely/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

version_info = (3, 4, 0)
version_info = (3, 4, 1)
__version__ = '.'.join(str(v) for v in version_info)
2 changes: 1 addition & 1 deletion requirements/core.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
jsonschema==2.6.0
jsonschema==3.2.0
mmh3==2.5.1
requests[security]>=2.9.1

0 comments on commit 8562eee

Please sign in to comment.