diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7499ca..b6c23a2 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.1 +current_version = 0.3.3 commit = False tag = False diff --git a/docs/examples/filtering_and_sorting.py b/docs/examples/filtering_and_sorting.py index 0131fb1..a80efd2 100644 --- a/docs/examples/filtering_and_sorting.py +++ b/docs/examples/filtering_and_sorting.py @@ -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. diff --git a/docs/examples/mass_sim_activation.py b/docs/examples/mass_sim_activation.py index 5de5344..43eecda 100644 --- a/docs/examples/mass_sim_activation.py +++ b/docs/examples/mass_sim_activation.py @@ -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: diff --git a/emnify/version.py b/emnify/version.py index 36fa170..a9038ce 100644 --- a/emnify/version.py +++ b/emnify/version.py @@ -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' diff --git a/setup.py b/setup.py index beb4908..8d89c00 100644 --- a/setup.py +++ b/setup.py @@ -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