From b1c52549c2cd265199a4648d8d810edf68699f74 Mon Sep 17 00:00:00 2001
From: Christoph Schmidt <christoph.,schmidt@tugraz.at>
Date: Wed, 6 Dec 2023 09:45:24 +0100
Subject: [PATCH] Updated to v0.0.2

---
 examples/example3/ChildProcess3.py | 7 +------
 pyproject.toml                     | 2 +-
 2 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/examples/example3/ChildProcess3.py b/examples/example3/ChildProcess3.py
index 9d7a37e..456a71f 100644
--- a/examples/example3/ChildProcess3.py
+++ b/examples/example3/ChildProcess3.py
@@ -16,7 +16,6 @@ class ChildProcess3(cmp.CProcess):
     def postrun_init(self):
         self.logger, self.logger_h = self.create_new_logger(f"{self.__class__.__name__}-({os.getpid()})")
 
-
     @cmp.CProcess.register_for_signal()
     def test_call(self, a):
         self.logger.info(f"{os.getpid()} -> test_call!")
@@ -24,14 +23,10 @@ class ChildProcess3(cmp.CProcess):
         self.test_call2 = 1
         return a
 
-    #@CProperty
-    #def test_call2(self, value: int = 0):
-    #    self.my_value = value
-
     @CProperty
     def test_call2(self, value: int):
         self.my_value = value
 
     @test_call2.setter(emit_to='bar')
     def test_call2(self, value: int):
-        self.my_value = value
\ No newline at end of file
+        self.my_value = value
diff --git a/pyproject.toml b/pyproject.toml
index fa0d6fb..10db365 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "cmp"
-version = "0.0.1"
+version = "0.0.2"
 authors = [
   { name="Christoph Schmidt", email="cschmidt.fs@gmail.com" },
 ]
-- 
GitLab