Skip to content

Commit

Permalink
Merge branch 'development' into fix/chl-985-address-sim-listing-call-…
Browse files Browse the repository at this point in the history
…pagination
  • Loading branch information
Th3Un1q3 authored Feb 7, 2024
2 parents 6e6579b + 6d127b9 commit d8db9b7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.1
current_version = 0.3.3
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion docs/examples/filtering_and_sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# The following example searches for SIMs without a device:
sims_without_assigned_device = emnify_client.sim.get_sim_list(without_device=True)

# === Example: Sort a list of SIM cards ===
# === Example: Sort all devices ===

# Like filtering, sorting reduces processing time by ordering objects in the server.
# Sorting also enables you to group objects by specifying a particular attribute.
Expand Down
2 changes: 1 addition & 1 deletion docs/examples/mass_sim_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
try:
# Next, add the SIM card batch to your account.
# This method also supports single SIM registration via BIC1
# so you can use your free Evaluation SIM cards.
# so you can use your free Trial SIMs.
issued_sims = emnify_client.sim.register_sim(bic=sim_batch_BIC2)
# All added SIMs are now registered with "Issued" status.
except EMnifyBaseException as e:
Expand Down
2 changes: 1 addition & 1 deletion emnify/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# THIS FILE IS GENERATED AUTOMATICALLY, DON'T CHANGE ITS CONTENT!!
EMNIFY_PACKAGE_VERSION='0.3.1'
EMNIFY_PACKAGE_VERSION='0.3.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os

NAME = os.getenv('PYPI_PACKAGE_NAME') or "emnify-sdk"
VERSION = "0.3.1"
VERSION = "0.3.3"
# To install the library, run the following
#
# python setup.py install
Expand Down

0 comments on commit d8db9b7

Please sign in to comment.