diff --git a/object_collection_manager/__init__.py b/object_collection_manager/__init__.py
index fb9c0c49203b09e213cc3d1bd2c78dfe82a9302c..7fe71187fb4653cea36b79110083164bd342861f 100644
--- a/object_collection_manager/__init__.py
+++ b/object_collection_manager/__init__.py
@@ -22,7 +22,7 @@ bl_info = {
     "name": "Collection Manager",
     "description": "Manage collections and their objects",
     "author": "Ryan Inch",
-    "version": (2, 12, 0),
+    "version": (2, 12, 1),
     "blender": (2, 80, 0),
     "location": "View3D - Object Mode (Shortcut - M)",
     "warning": '',  # used for warning icon and text in addons panel
diff --git a/object_collection_manager/operators.py b/object_collection_manager/operators.py
index 1025535e067b29886a4f4f8c5305c92f11487759..177ab3d709b7c2f5e1b42fc70b593ce208ee91fb 100644
--- a/object_collection_manager/operators.py
+++ b/object_collection_manager/operators.py
@@ -100,7 +100,6 @@ class ExpandAllOperator(Operator):
     '''Expand/Collapse all collections'''
     bl_label = "Expand All Items"
     bl_idname = "view3d.expand_all_items"
-    bl_options = {'REGISTER', 'UNDO'}
 
     def execute(self, context):
         global expand_history
@@ -131,7 +130,6 @@ class ExpandSublevelOperator(Operator):
         "  * Alt+LMB - Discard history"
         )
     bl_idname = "view3d.expand_sublevel"
-    bl_options = {'REGISTER', 'UNDO'}
 
     expand: BoolProperty()
     name: StringProperty()