Bump version to 1.5.1; mention doc web site and 2.0 alpha
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 26e0ce8..fac8f37 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -11,7 +11,7 @@
 project(qcbor
     DESCRIPTION "QCBOR"
     LANGUAGES C
-    VERSION 1.5.0
+    VERSION 1.5.1
 )
 
 set(BUILD_QCBOR_TEST  "OFF"  CACHE STRING "Build QCBOR test suite [OFF, LIB, APP]")
diff --git a/README.md b/README.md
index 4614880..473517e 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,17 @@
 * [RFC8742](https://tools.ietf.org/html/rfc8742) CBOR Sequences
 * [RFC8943](https://tools.ietf.org/html/rfc8943) CBOR Dates
 
+## QCBOR v2 alpha release
+
+Alpha releases of QCBOR 2.0 are available [here](https://github.com/laurencelundblade/QCBOR/tree/dev).
+It includes:
+
+* Better tag handling
+* Map sorting
+* Modes for CDE and Preferred Serialization
+* dCBOR support
+* Better big number support
+
 ## QCBOR Characteristics
 
 **Implemented in C with minimal dependency** – Dependent only
@@ -19,7 +30,7 @@
   QCBOR to run correctly.
 
 **Focused on C / native data representation** – Careful conversion of
-  CBOR data types in to C data types,  handling over and
+  CBOR data types in to C data types, handling over and
   underflow, strict typing and such so the caller doesn't have to
   worry so much about this and so code using QCBOR passes static
   analyzers easier.  Simpler code because there is no support for
@@ -66,6 +77,11 @@
   with the test suite. The test suite dependencies are minimal and the
   same as the library's.
 
+## Documentation
+
+Full API documentation is at https://www.securitytheory.com/qcbor-docs/
+
+
 ## Spiffy Decode
 
 These are functions to decode particular data types. They are an
@@ -168,7 +184,7 @@
 
 ## Code Status
 
-The official current release is version 1.5 Changes over the last few
+The official current release is version 1.5.1. Changes over the last few
 years have been only minor bug fixes, minor feature additions and
 documentation improvements. QCBOR 1.x is highly stable.
 
diff --git a/inc/qcbor/qcbor_common.h b/inc/qcbor/qcbor_common.h
index 0027cf9..f15d59a 100644
--- a/inc/qcbor/qcbor_common.h
+++ b/inc/qcbor/qcbor_common.h
@@ -59,7 +59,7 @@
  */
 #define QCBOR_VERSION_MAJOR 1
 #define QCBOR_VERSION_MINOR 5
-#define QCBOR_VERSION_PATCH 0
+#define QCBOR_VERSION_PATCH 1
 
 
 /**
diff --git a/pkg/qcbor.spec b/pkg/qcbor.spec
index 19b0ee6..33d1661 100644
--- a/pkg/qcbor.spec
+++ b/pkg/qcbor.spec
@@ -1,12 +1,12 @@
 # Guidelines from https://docs.fedoraproject.org/en-US/packaging-guidelines/CMake/
 
 Name: qcbor
-Version: 1.5.0
+Version: 1.5.1
 Release: 0%{?dist}
 Summary: A CBOR encoder/decoder library
 URL: https://github.com/laurencelundblade/QCBOR
 License: BSD-3-Clause
-Source0: %{URL}/archive/refs/tags/v1.5.tar.gz
+Source0: %{URL}/archive/refs/tags/v1.5.1.tar.gz
 
 BuildRequires: cmake
 BuildRequires: gcc
@@ -24,7 +24,7 @@
 
 
 %prep
-%setup -q -n QCBOR-1.5
+%setup -q -n QCBOR-1.5.1
 %cmake -DBUILD_QCBOR_TEST=APP
 
 
@@ -53,5 +53,5 @@
 
 
 %changelog
-* Fri Dec 20 2024 Laurence Lundblade <lgl@island-resort.com> - 1.5.0-0
+* Jan 8 2024 Laurence Lundblade <lgl@island-resort.com> - 1.5.1
 - Initial library RPM packaging.