From a020d166e8f36f4ca62d34f323328476ef36da96 Mon Sep 17 00:00:00 2001
From: Dan Jones <dan.jones@noc.ac.uk>
Date: Fri, 24 Mar 2023 11:11:26 +0000
Subject: [PATCH] release: v0.1

Add changelog
Update version in package.json and setup.py
Update org name in licence
---
 CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++
 LICENCE.md   |  2 +-
 package.json |  2 +-
 setup.py     |  1 +
 yarn.lock    |  4 ++++
 5 files changed, 42 insertions(+), 2 deletions(-)
 create mode 100644 CHANGELOG.md
 create mode 100644 yarn.lock

diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..594c6fe
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,35 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
+and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+
+## [Unreleased]
+
+## [v0.1] - 2023-03-24
+
+### Added
+
+Tests and associated fixtures 
+
+Added tests for schema 
+- mock schema is valid
+
+Added tests for adapter 
+- auth 
+- getAuthorizationHeader
+- broadcast
+- poll
+- publish
+- tokenValid
+- validate (message delegated to protocol)
+
+Added tests for protocol 
+- decode 
+- encode 
+- getType
+- validate (message) 
+
+[v0.1]: https://git.noc.ac.uk/communications-backbone-system/backbone-adapter-testsuite/compare/72413c71...v0.1
+[unreleased]: https://git.noc.ac.uk/communications-backbone-system/backbone-adapter-testsuite/compare/v0.1...dev
\ No newline at end of file
diff --git a/LICENCE.md b/LICENCE.md
index 10bb2c1..7f45c48 100644
--- a/LICENCE.md
+++ b/LICENCE.md
@@ -1,4 +1,4 @@
-Copyright 2023 [NOC](https://noc.ac.uk)
+Copyright 2023 [National Oceanography Centre](https://noc.ac.uk)
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 
diff --git a/package.json b/package.json
index 6cc5121..6945ecf 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "backbone-adapter-testsuite",
-  "version": "0.0.1",
+  "version": "0.1",
   "description": "Common test suite to run on all adapter language ports",
   "repository": {
     "type": "git",
diff --git a/setup.py b/setup.py
index b025934..7998415 100644
--- a/setup.py
+++ b/setup.py
@@ -2,6 +2,7 @@ from setuptools import setup
 
 
 setup(
+    version='0.1',
     name='backbone_adapter_testsuite',
     packages=['testsuite'],
     package_dir={
diff --git a/yarn.lock b/yarn.lock
new file mode 100644
index 0000000..fb57ccd
--- /dev/null
+++ b/yarn.lock
@@ -0,0 +1,4 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
-- 
GitLab