Release 0.3.2
diff --git a/assets/json-schema/Integration.json b/assets/json-schema/Integration.json
index 84caa98..a1ef8f0 100644
--- a/assets/json-schema/Integration.json
+++ b/assets/json-schema/Integration.json
@@ -229,7 +229,7 @@
           "patternProperties": {
             ".*": {
               "$schema": "http://json-schema.org/draft-04/schema#",
-              "$ref": "#/definitions/IntegrationTraitSpec"
+              "$ref": "#/definitions/TraitSpec"
             }
           },
           "type": "object"
@@ -278,20 +278,6 @@
       "additionalProperties": false,
       "type": "object"
     },
-    "IntegrationTraitSpec": {
-      "properties": {
-        "configuration": {
-          "patternProperties": {
-            ".*": {
-              "type": "string"
-            }
-          },
-          "type": "object"
-        }
-      },
-      "additionalProperties": false,
-      "type": "object"
-    },
     "OwnerReference": {
       "required": [
         "apiVersion",
@@ -456,6 +442,20 @@
     "Time": {
       "additionalProperties": false,
       "type": "object"
+    },
+    "TraitSpec": {
+      "properties": {
+        "configuration": {
+          "patternProperties": {
+            ".*": {
+              "type": "string"
+            }
+          },
+          "type": "object"
+        }
+      },
+      "additionalProperties": false,
+      "type": "object"
     }
   }
 }
\ No newline at end of file
diff --git a/assets/json-schema/IntegrationContext.json b/assets/json-schema/IntegrationContext.json
index 5a3cf87..f879529 100644
--- a/assets/json-schema/IntegrationContext.json
+++ b/assets/json-schema/IntegrationContext.json
@@ -227,7 +227,7 @@
           "patternProperties": {
             ".*": {
               "$schema": "http://json-schema.org/draft-04/schema#",
-              "$ref": "#/definitions/IntegrationTraitSpec"
+              "$ref": "#/definitions/TraitSpec"
             }
           },
           "type": "object"
@@ -274,20 +274,6 @@
       "additionalProperties": false,
       "type": "object"
     },
-    "IntegrationTraitSpec": {
-      "properties": {
-        "configuration": {
-          "patternProperties": {
-            ".*": {
-              "type": "string"
-            }
-          },
-          "type": "object"
-        }
-      },
-      "additionalProperties": false,
-      "type": "object"
-    },
     "OwnerReference": {
       "required": [
         "apiVersion",
@@ -401,6 +387,20 @@
     "Time": {
       "additionalProperties": false,
       "type": "object"
+    },
+    "TraitSpec": {
+      "properties": {
+        "configuration": {
+          "patternProperties": {
+            ".*": {
+              "type": "string"
+            }
+          },
+          "type": "object"
+        }
+      },
+      "additionalProperties": false,
+      "type": "object"
     }
   }
 }
\ No newline at end of file
diff --git a/deploy/operator-deployment-kubernetes.yaml b/deploy/operator-deployment-kubernetes.yaml
index 951a4a9..f7177bf 100644
--- a/deploy/operator-deployment-kubernetes.yaml
+++ b/deploy/operator-deployment-kubernetes.yaml
@@ -21,7 +21,7 @@
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/deploy/operator-deployment-openshift.yaml b/deploy/operator-deployment-openshift.yaml
index cb5e131..eddfb0c 100644
--- a/deploy/operator-deployment-openshift.yaml
+++ b/deploy/operator-deployment-openshift.yaml
@@ -21,7 +21,7 @@
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/deploy/resources.go b/deploy/resources.go
index dd9de02..ed3d11b 100644
--- a/deploy/resources.go
+++ b/deploy/resources.go
@@ -4365,7 +4365,7 @@
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
@@ -4425,7 +4425,7 @@
       serviceAccountName: camel-k-operator
       containers:
         - name: camel-k-operator
-          image: docker.io/apache/camel-k:0.3.2-SNAPSHOT
+          image: docker.io/apache/camel-k:0.3.2
           command:
           - camel-k
           imagePullPolicy: IfNotPresent
diff --git a/pkg/util/defaults/defaults.go b/pkg/util/defaults/defaults.go
index 8ffeef9..3af29bb 100644
--- a/pkg/util/defaults/defaults.go
+++ b/pkg/util/defaults/defaults.go
@@ -6,7 +6,7 @@
 
 const (
 	// Version --
-	Version = "0.3.2-SNAPSHOT"
+	Version = "0.3.2"
 
 	// CamelVersionConstraint --
 	CamelVersionConstraint = "~2.23.x"
diff --git a/script/Makefile b/script/Makefile
index 30cb95b..6ad8dbc 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -1,5 +1,5 @@
 VERSIONFILE := pkg/util/defaults/defaults.go
-VERSION := 0.3.2-SNAPSHOT
+VERSION := 0.3.2
 RUNTIME_VERSION := 0.3.1
 CAMEL_VERSION := 2.23.1
 CAMEL_VERSION_CONSTRAINT := ~2.23.x