Add next patch version v0.8.2
diff --git a/config/crd/bases/solr.apache.org_solrbackups.yaml b/config/crd/bases/solr.apache.org_solrbackups.yaml
index 9c0d245..cecffb3 100644
--- a/config/crd/bases/solr.apache.org_solrbackups.yaml
+++ b/config/crd/bases/solr.apache.org_solrbackups.yaml
@@ -17,7 +17,7 @@
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.8.1
+    operator.solr.apache.org/version: v0.8.2-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.10.0
   creationTimestamp: null
diff --git a/config/crd/bases/solr.apache.org_solrclouds.yaml b/config/crd/bases/solr.apache.org_solrclouds.yaml
index 1f8d9ec..cba7411 100644
--- a/config/crd/bases/solr.apache.org_solrclouds.yaml
+++ b/config/crd/bases/solr.apache.org_solrclouds.yaml
@@ -17,7 +17,7 @@
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.8.1
+    operator.solr.apache.org/version: v0.8.2-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.10.0
   creationTimestamp: null
diff --git a/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml b/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml
index c64ffac..5ac6b34 100644
--- a/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml
+++ b/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml
@@ -17,7 +17,7 @@
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.8.1
+    operator.solr.apache.org/version: v0.8.2-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.10.0
   creationTimestamp: null
diff --git a/docs/local_tutorial.md b/docs/local_tutorial.md
index 3574105..aa7243d 100644
--- a/docs/local_tutorial.md
+++ b/docs/local_tutorial.md
@@ -90,9 +90,9 @@
 
 ```bash
 # Install the Solr & Zookeeper CRDs
-$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.8.1/all-with-dependencies.yaml
+$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.8.2-prerelease/all-with-dependencies.yaml
 # Install the Solr operator and Zookeeper Operator
-$ helm install solr-operator apache-solr/solr-operator --version 0.8.1
+$ helm install solr-operator apache-solr/solr-operator --version 0.8.2-prerelease
 ```
 
 _Note that the Helm chart version does not contain a `v` prefix, which the downloads version does. The Helm chart version is the only part of the Solr Operator release that does not use the `v` prefix._
@@ -123,7 +123,7 @@
 
 ```bash
 # Create a 3-node cluster v8.11.2 with 300m Heap each:
-helm install example-solr apache-solr/solr --version 0.8.1 \
+helm install example-solr apache-solr/solr --version 0.8.2-prerelease \
   --set image.tag=8.11.2 \
   --set solrOptions.javaMemory="-Xms300m -Xmx300m" \
   --set addressability.external.method=Ingress \
@@ -211,7 +211,7 @@
 curl -s http://default-example-solrcloud.ing.local.domain/solr/admin/info/system | grep solr-i
 
 # Update the solrCloud configuration with the new version, keeping all previous settings and the number of nodes set by the autoscaler.
-helm upgrade example-solr apache-solr/solr --version 0.8.1 \
+helm upgrade example-solr apache-solr/solr --version 0.8.2-prerelease \
   --reuse-values \
   --set image.tag=8.11.3
 
diff --git a/docs/running-the-operator.md b/docs/running-the-operator.md
index 4a063f4..2ca657b 100644
--- a/docs/running-the-operator.md
+++ b/docs/running-the-operator.md
@@ -38,8 +38,8 @@
 This will install the [Zookeeper Operator](https://github.com/pravega/zookeeper-operator) by default.
 
 ```bash
-$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.8.1/all-with-dependencies.yaml
-$ helm install solr-operator apache-solr/solr-operator --version 0.8.1
+$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.8.2-prerelease/all-with-dependencies.yaml
+$ helm install solr-operator apache-solr/solr-operator --version 0.8.2-prerelease
 ```
 
 _Note that the Helm chart version does not contain a `v` prefix, which the downloads version does. The Helm chart version is the only part of the Solr Operator release that does not use the `v` prefix._
diff --git a/docs/upgrade-notes.md b/docs/upgrade-notes.md
index a117bc4..0ed2e1d 100644
--- a/docs/upgrade-notes.md
+++ b/docs/upgrade-notes.md
@@ -113,8 +113,8 @@
 
 ```bash
 # Just replace the Solr CRDs and all CRDs it might depend on (e.g. ZookeeperCluster)
-kubectl replace -f "http://solr.apache.org/operator/downloads/crds/v0.8.1/all-with-dependencies.yaml"
-helm upgrade solr-operator apache-solr/solr-operator --version 0.8.1
+kubectl replace -f "http://solr.apache.org/operator/downloads/crds/v0.8.2-prerelease/all-with-dependencies.yaml"
+helm upgrade solr-operator apache-solr/solr-operator --version 0.8.2-prerelease
 ```
 
 _Note that the Helm chart version does not contain a `v` prefix, which the downloads version does. The Helm chart version is the only part of the Solr Operator release that does not use the `v` prefix._
diff --git a/helm/solr-operator/Chart.yaml b/helm/solr-operator/Chart.yaml
index db8891a..e39b25e 100644
--- a/helm/solr-operator/Chart.yaml
+++ b/helm/solr-operator/Chart.yaml
@@ -15,8 +15,8 @@
 apiVersion: v2
 name: solr-operator
 description: The Solr Operator enables easy management of Solr resources within Kubernetes.
-version: 0.8.1
-appVersion: v0.8.1
+version: 0.8.2-prerelease
+appVersion: v0.8.2-prerelease
 kubeVersion: ">= 1.22.0-0"
 home: https://solr.apache.org/operator
 sources:
@@ -42,21 +42,21 @@
   artifacthub.io/category: "database"
   artifacthub.io/operator: "true"
   artifacthub.io/operatorCapabilities: Full Lifecycle
-  artifacthub.io/prerelease: "false"
+  artifacthub.io/prerelease: "true"
   artifacthub.io/recommendations: |
     - url: https://artifacthub.io/packages/helm/apache-solr/solr
   artifacthub.io/links: |
     - name: "Tutorials"
       url: https://solr.apache.org/operator/resources#tutorials
   artifacthub.io/signKey: |
-    fingerprint: E05FDF113D89E7FB4A2DF4B2684D544160392455
+    fingerprint: <fingerprint>
     url: https://dist.apache.org/repos/dist/release/solr/KEYS
   # Add change log for a single release here.
   # Allowed syntax is described at: https://artifacthub.io/docs/topics/annotations/helm/#example
-  artifacthub.io/changes: "- kind: security\n  description: Command-based Solr probes no longer echoes 'JAVA_TOOL_OPTIONS' values in Kubernetes events.\n  links:\n    - name: JIRA Issue\n      url: https://issues.apache.org/jira/browse/SOLR-17216\n    - name: Github PR\n      url: https://github.com/apache/solr-operator/pull/698\n- kind: changed\n  description: SolrClouds now support auto-readOnlyRootFilesystem setting.\n  links:\n    - name: Github Issue\n      url: https://github.com/apache/solr-operator/issues/624\n    - name: Github PR\n      url: https://github.com/apache/solr-operator/pull/648\n  description: Avoid reset of security.json if get request fails  \n  links:\n    - name: Github Issue\n      url: https://github.com/apache/solr-operator/issues/659\n    - name: Github PR\n      url: https://github.com/apache/solr-operator/pull/660\n- kind: fixed\n  description: SolrCloud scaling is now safe when using persistent storage with a 'Delete' reclaim policy\n  links:\n    - name: Github Issue\n      url: https://github.com/apache/solr-operator/issues/688\n    - name: Github PR\n      url: https://github.com/apache/solr-operator/pull/689\n- kind: fixed\n  description: SolrPrometheusExporter no longer fails liveness probes when the SolrCloud is too large\n  links:\n    - name: Github Issue\n      url: https://github.com/apache/solr-operator/issues/693\n    - name: Github PR\n      url: https://github.com/apache/solr-operator/pull/694\n- kind: fixed\n  description: SolrClouds addressed via an Ingress now scale up and down safely.\n  links:\n    - name: Github Issue\n      url: https://github.com/apache/solr-operator/issues/682\n    - name: Github PR\n      url: https://github.com/apache/solr-operator/pull/692\n"
+  artifacthub.io/changes: "- kind: added\n  description: Addition 1\n  links:\n    - name: Github Issue\n      url: https://github.com/issue-url\n- kind: changed\n  description: Change 2\n  links:\n    - name: Github PR\n      url: https://github.com/pr-url\n"
   artifacthub.io/images: |
     - name: solr-operator
-      image: apache/solr-operator:v0.8.1
+      image: apache/solr-operator:v0.8.2-prerelease
   artifacthub.io/crds: |
     - kind: SolrCloud
       version: v1beta1
diff --git a/helm/solr-operator/README.md b/helm/solr-operator/README.md
index 467b318..2a55237 100644
--- a/helm/solr-operator/README.md
+++ b/helm/solr-operator/README.md
@@ -43,8 +43,8 @@
 To install the Solr Operator for the first time in your cluster, you can use the latest version or a specific version, run with the following commands:
 
 ```bash
-kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.8.1/all-with-dependencies.yaml
-helm install solr-operator apache-solr/solr-operator --version 0.8.1
+kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.8.2-prerelease/all-with-dependencies.yaml
+helm install solr-operator apache-solr/solr-operator --version 0.8.2-prerelease
 ```
 
 The command deploys the solr-operator on the Kubernetes cluster with the default configuration.
@@ -57,8 +57,8 @@
 If you are upgrading your Solr Operator deployment, you should always use a specific version of the chart and pre-install the Solr CRDS:
 
 ```bash
-kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.8.1/all-with-dependencies.yaml
-helm upgrade solr-operator apache-solr/solr-operator --version 0.8.1
+kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.8.2-prerelease/all-with-dependencies.yaml
+helm upgrade solr-operator apache-solr/solr-operator --version 0.8.2-prerelease
 ```
 
 #### Namespaces
@@ -172,7 +172,7 @@
 | Key | Type | Default | Description |
 |-----|------|---------|-------------|
 | image.repository | string | `"apache/solr-operator"` | The repository of the Solr Operator image |
-| image.tag | string | `"v0.8.1"` | The tag/version of the Solr Operator to run |
+| image.tag | string | `"v0.8.2-prerelease"` | The tag/version of the Solr Operator to run |
 | image.pullPolicy | string | `"IfNotPresent"` |  |
 | fullnameOverride | string | `""` | A custom name for the Solr Operator Deployment |
 | nameOverride | string | `""` |  |
diff --git a/helm/solr-operator/crds/crds.yaml b/helm/solr-operator/crds/crds.yaml
index f79bd86..4031bcf 100644
--- a/helm/solr-operator/crds/crds.yaml
+++ b/helm/solr-operator/crds/crds.yaml
@@ -17,7 +17,7 @@
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.8.1
+    operator.solr.apache.org/version: v0.8.2-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.10.0
   creationTimestamp: null
@@ -266,7 +266,7 @@
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.8.1
+    operator.solr.apache.org/version: v0.8.2-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.10.0
   creationTimestamp: null
@@ -17084,7 +17084,7 @@
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.8.1
+    operator.solr.apache.org/version: v0.8.2-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.10.0
   creationTimestamp: null
diff --git a/helm/solr-operator/values.yaml b/helm/solr-operator/values.yaml
index c7dcf44..6f65c2f 100644
--- a/helm/solr-operator/values.yaml
+++ b/helm/solr-operator/values.yaml
@@ -21,7 +21,7 @@
 
 image:
   repository: apache/solr-operator
-  tag: v0.8.1
+  tag: v0.8.2-prerelease
   pullPolicy: IfNotPresent
 
 nameOverride: ""
diff --git a/helm/solr/Chart.yaml b/helm/solr/Chart.yaml
index b487bd6..6d8dd10 100644
--- a/helm/solr/Chart.yaml
+++ b/helm/solr/Chart.yaml
@@ -15,7 +15,7 @@
 apiVersion: v2
 name: solr
 description: A SolrCloud cluster running on Kubernetes via the Solr Operator
-version: 0.8.1
+version: 0.8.2-prerelease
 appVersion: 8.11.1
 kubeVersion: ">= 1.22.0-0"
 home: https://solr.apache.org
@@ -37,10 +37,10 @@
   artifacthub.io/alternativeName: "solrcloud"
   artifacthub.io/category: "database"
   artifacthub.io/operator: "false"
-  artifacthub.io/prerelease: "false"
+  artifacthub.io/prerelease: "true"
   # Add change log for a single release here.
   # Allowed syntax is described at: https://artifacthub.io/docs/topics/annotations/helm/#example
-  artifacthub.io/changes: ""
+  artifacthub.io/changes: "- kind: added\n  description: Addition 1\n  links:\n    - name: Github Issue\n      url: https://github.com/issue-url\n- kind: changed\n  description: Change 2\n  links:\n    - name: Github PR\n      url: https://github.com/pr-url\n"
   artifacthub.io/containsSecurityUpdates: "false"
   artifacthub.io/recommendations: |
     - url: https://artifacthub.io/packages/helm/apache-solr/solr-operator
@@ -58,5 +58,5 @@
       image: solr:8.11
       whitelisted: true
   artifacthub.io/signKey: |
-    fingerprint: E05FDF113D89E7FB4A2DF4B2684D544160392455
+    fingerprint: <fingerprint>
     url: https://dist.apache.org/repos/dist/release/solr/KEYS
diff --git a/helm/solr/README.md b/helm/solr/README.md
index 8b34766..2ba376e 100644
--- a/helm/solr/README.md
+++ b/helm/solr/README.md
@@ -38,7 +38,7 @@
 To install a SolrCloud for the first time in your cluster, you can use the latest version or a specific version, run with the following commands:
 
 ```bash
-helm install example apache-solr/solr --version 0.8.1 --set image.tag=8.8
+helm install example apache-solr/solr --version 0.8.2-prerelease --set image.tag=8.8
 ```
 
 The command deploys a SolrCloud object on the Kubernetes cluster with the default configuration.
@@ -52,7 +52,7 @@
 If you are upgrading your SolrCloud deployment, you should always use a specific version of the chart and upgrade **after [upgrading the Solr Operator](https://artifacthub.io/packages/helm/apache-solr/solr-operator#upgrading-the-solr-operator) to the same version**:
 
 ```bash
-helm upgrade example apache-solr/solr --version 0.8.1 --reuse-values --set image.tag=8.11
+helm upgrade example apache-solr/solr --version 0.8.2-prerelease --reuse-values --set image.tag=8.11
 ```
 
 The upgrade will be done according to the `upgradeStrategy.method` chosen in the values.
diff --git a/version/version.go b/version/version.go
index efbe812..0eb8a39 100644
--- a/version/version.go
+++ b/version/version.go
@@ -19,8 +19,8 @@
 
 var (
 	// Version information for the Solr Operator
-	Version       = "v0.8.1"
-	VersionSuffix = ""
+	Version       = "v0.8.2"
+	VersionSuffix = "prerelease"
 	BuildTime     string
 	GitSHA        string
 )