diff --git a/README.rst b/README.rst
index 23aeee58c0cd2d5d92273a5f4e3e2b92d10754c8..055130e1cefc49a0dac0b32f6309aa975a896eaf 100644
--- a/README.rst
+++ b/README.rst
@@ -9,12 +9,13 @@ lemi2seed
     - ``lemi2seed -h``
     - ``lemi2seed -d path2data -qc`` *(run lemi2seed in "quality control" mode)*
     - ``lemi2seed -d path2data -g`` *(run lemi2seed in "gui only" mode)*
+    - ``lemi2seed -d path2data -g -s path2savedmd`` *(run lemi2seed in "gui only" mode after loading previously saved metadata fields)*
     - ``lemi2seed -d path2data -m path2metadata`` *(run lemi2seed in "field sheet and gui" mode)*
 
   The "quality control" mode allows to quickly convert LEMI data to day-long mseed files. The GUI and handling of metadata are bypassed.
 
-  In the "gui only" mode, metadata are entered only using the GUI.
+  In the "gui only" mode, metadata are entered/modified using the GUI only.
 
-  In the "field sheet and gui" mode, metadata are prepopulated from parsing the provided field sheets.
+  In the "field sheet and gui" mode, metadata are prepopulated from parsing the user-provided field sheets and modified using the GUI.
 
 - **License**: GNU General Public License v3 (GPLv3)
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index 16d1cce995c1ecc23da22a3977d06fb8040ff41b..8e3a6e7ac34c51262943a5910d33e778d532a079 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -1,6 +1,6 @@
 package:
   name: lemi2seed
-  version: 2022.332
+  version: 2023.1.0.0
 
 source:
   path: ../
diff --git a/lemi2seed/__init__.py b/lemi2seed/__init__.py
index 8ed983c8c0c5555039fc5e30f46291f1998d9805..c3a3d5ebd1941d79ce2891f1c98262b375db8393 100644
--- a/lemi2seed/__init__.py
+++ b/lemi2seed/__init__.py
@@ -4,4 +4,4 @@
 
 __author__ = """IRIS PASSCAL"""
 __email__ = 'software-support@passcal.nmt.edu'
-__version__ = '2022.332'
+__version__ = '2023.1.0.0'
diff --git a/lemi2seed/config/config.ini b/lemi2seed/config/config.ini
index 34228c2c3ae30b72064ae5f14ad297bc504a7de9..1596877214d391ec02f0bdfff75f0b3e5cddd8ed 100644
--- a/lemi2seed/config/config.ini
+++ b/lemi2seed/config/config.ini
@@ -1,7 +1,7 @@
 [software]
 author = Maeva Pourpoint
 name = lemi2seed
-version = 2022.332
+version = 2023.1.0.0
 
 [sheets]
 header = A1
diff --git a/setup.py b/setup.py
index b8993bc6d48af784f2091d648217b0bf07caa1ff..3ab8229939da192a1856e5b93ccd268151b41310 100644
--- a/setup.py
+++ b/setup.py
@@ -52,6 +52,6 @@ setup(
     name='lemi2seed',
     packages=find_packages(include=['lemi2seed']),
     url='https://git.passcal.nmt.edu/software_public/mt/lemi2seed',
-    version='2022.332',
+    version='2023.1.0.0',
     zip_safe=False,
 )