Skip to content

Commit

Permalink
Merge pull request #1501 from SFDO-Tooling/feature/3.5.3
Browse files Browse the repository at this point in the history
Feature/3.5.3
  • Loading branch information
TheBitShepherd authored Jan 23, 2020
2 parents 607df3b + 4312e6c commit 53ad1c6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
History
=======

3.5.3 (2020-01-23)
------------------
* Added new features for running Python code (in a file or string) without brining up an interactive shell. You can now use `--python` and `--script` arguments for the `cci shell` and `cci org shell` commands.
* Added support for up to two optional parameters in Apex anonymous via token substitution.
* The `EnsureRecordTypes` class is now exposed as `ensure_record_types` and correctly supports the Case, Lead, and Solution sObjects (in addition to other standard objects).
* Fixed a bug where the github_parent_pr_notes was attempting to post comments on issues related to child pull request change notes.
* Fixed various Robot keyword issues that have been reported for Spring '20.


3.5.2 (2020-01-21)
------------------

Expand Down
2 changes: 1 addition & 1 deletion cumulusci/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__import__("pkg_resources").declare_namespace("cumulusci")

__version__ = "3.5.2"
__version__ = "3.5.3"

__location__ = os.path.dirname(os.path.realpath(__file__))

Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ is installed correctly by running ``cci version``:
.. code:: console
$ cci version
CumulusCI version: 3.5.2 (/path/to/bin/cci)
CumulusCI version: 3.5.3 (/path/to/bin/cci)
Python version: 3.7.4 (/path/to/bin/python)
You have the latest version of CumulusCI.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.5.2
current_version = 3.5.3
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def find_packages(path=["."], prefix=""):

setup(
name="cumulusci",
version="3.5.2",
version="3.5.3",
description="Build and release tools for Salesforce developers",
long_description=readme + u"\n\n" + history,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 53ad1c6

Please sign in to comment.