Skip to content

Commit 5fefd2b

Browse files
authored
chore: Preparing for 3.8.0 release (#315)
* feat(release) bump version, update changelog, update py version * updtae changelog note * again updtae changelog note
1 parent 67b9f83 commit 5fefd2b

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Optimizely Python SDK Changelog
22

3+
## 3.8.0
4+
February 12th, 2021
5+
6+
### New Features
7+
* New Features
8+
Introducing a new primary interface for retrieving feature flag status, configuration and associated experiment decisions for users ([#309](https://github.com/optimizely/python-sdk/pull/309)). The new `OptimizelyUserContext` class is instantiated with `create_user_context` and exposes the following APIs to get `OptimizelyDecision`:
9+
10+
- set_attribute
11+
- decide
12+
- decide_all
13+
- decide_for_keys
14+
- track_event
15+
16+
For details, refer to our documentation page: https://docs.developers.optimizely.com/full-stack/v4.0/docs/python-sdk.
17+
318
## 3.7.1
419
November 19th, 2020
520

optimizely/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313

14-
version_info = (3, 7, 1)
14+
version_info = (3, 8, 0)
1515
__version__ = '.'.join(str(v) for v in version_info)

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'Optimizely X Full Stack is A/B testing and feature management for product development teams. '
2828
'Experiment in any application. Make every feature on your roadmap an opportunity to learn. '
2929
'Learn more at https://www.optimizely.com/products/full-stack/ or see our documentation at '
30-
'https://developers.optimizely.com/x/solutions/sdks/reference/index.html?language=python.'
30+
'https://docs.developers.optimizely.com/full-stack/docs.'
3131
)
3232

3333
setup(
@@ -50,6 +50,8 @@
5050
'Programming Language :: Python :: 3.4',
5151
'Programming Language :: Python :: 3.5',
5252
'Programming Language :: Python :: 3.6',
53+
'Programming Language :: Python :: 3.7',
54+
'Programming Language :: Python :: 3.8',
5355
],
5456
packages=find_packages(exclude=['docs', 'tests']),
5557
extras_require={'test': TEST_REQUIREMENTS},

0 commit comments

Comments
 (0)