From b8721ad5653e3e2462d79a87f4ec4229594950ee Mon Sep 17 00:00:00 2001
From: Stefan Krastanov <stefan@krastanov.org>
Date: Wed, 16 Oct 2024 09:34:04 -0400
Subject: [PATCH] fix incorrect version number (#163)

---
 CHANGELOG.md | 10 ++++------
 Project.toml |  2 +-
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f1f2c68..557de55 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,16 +1,14 @@
 # News
 
-## v0.6.0 - 2024-09-13
-
-- Simplify one of the switch protocols to avoid dependence on GraphMatching.jl which does not install well on non-linux systems. Do not rely on the default `SimpleSwitchDiscreteProt` for the time being.
-
-## v0.5.0 - 2024-09-05
+## v0.5.0 - 2024-10-16
 
 - Develop `CutoffProt` to deal with deadlocks in a simulation
 - Expand `SwapperProt` with `agelimit` to permit cutoff policies (with `CutoffProt`)
 - Tutorial and interactive examples for entanglement distribution on a grid with local-only knowledge
 - **(breaking)** `observable` now takes a default value as a kwarg, i.e., you need to make the substitution `observable(regs, obs, 0.0; time)` ↦ `observable(regs, obs; something=0.0, time)`
 - Bump QuantumSymbolics and QuantumOpticsBase compat bound and bump julia compat to 1.10.
+- Implement a simple switch protocol.
+    - Simplify one of the switch protocols to avoid dependence on GraphMatching.jl which does not install well on non-linux systems. Do not rely on the default `SimpleSwitchDiscreteProt` for the time being.
 
 ## v0.4.2 - 2024-08-13
 
@@ -27,4 +25,4 @@
 - Establishing the symbolic expression capabilities
 - Establishing plotting and visualization capabilities
 
-## older versions were not tracked
\ No newline at end of file
+## older versions were not tracked
diff --git a/Project.toml b/Project.toml
index 716f233..ac7091b 100644
--- a/Project.toml
+++ b/Project.toml
@@ -1,7 +1,7 @@
 name = "QuantumSavory"
 uuid = "2de2e421-972c-4cb5-a0c3-999c85908079"
 authors = ["Stefan Krastanov <stefan@krastanov.org>"]
-version = "0.6"
+version = "0.5"
 
 [deps]
 Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"