Skip to content

Commit

Permalink
Bump version to 2.0.0, update HISTORY.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlLevik committed May 15, 2023
1 parent 3b372f9 commit 8dda592
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ History
Unreleased / master
-------------------

2.0.0 (2023-05-15)
-------------------

Removed procedures relating to old ``XrayCentringResult`` table removed in 1.36.0 (contributed by @DominicOram)

New and modified columns:
Expand Down
5 changes: 3 additions & 2 deletions schemas/ispyb/lookups.sql
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

/*!40000 ALTER TABLE `AdminVar` DISABLE KEYS */;
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','1.36.1');
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','2.0.0');
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;

/*!40000 ALTER TABLE `SchemaStatus` DISABLE KEYS */;
Expand Down Expand Up @@ -226,7 +226,8 @@ INSERT INTO `SchemaStatus` (`schemaStatusId`, `scriptName`, `schemaStatus`, `rec
(251,'2023_05_05_Dewar_extra.sql','DONE','2023-05-05 14:25:42'),
(252,'2023_05_05_ParticleClassificationGroup_selected.sql','DONE','2023-05-05 14:25:42'),
(253,'2023_05_09_Dewar_modify_comments.sql','DONE','2023-05-11 15:32:52'),
(254,'2023_05_11_ParticleClassification_selected.sql','DONE','2023-05-11 15:32:52');
(254,'2023_05_11_ParticleClassification_selected.sql','DONE','2023-05-11 15:32:52'),
(255,'2023_05_15_AdminVar_bump_version.sql','DONE','2023-05-15 09:59:49');
/*!40000 ALTER TABLE `SchemaStatus` ENABLE KEYS */;

/*!40000 ALTER TABLE `ComponentType` DISABLE KEYS */;
Expand Down
5 changes: 5 additions & 0 deletions schemas/ispyb/updates/2023_05_15_AdminVar_bump_version.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2023_05_15_AdminVar_bump_version.sql', 'ONGOING');

UPDATE AdminVar SET `value` = '2.0.0' WHERE `name` = 'schemaVersion';

UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2023_05_15_AdminVar_bump_version.sql';

0 comments on commit 8dda592

Please sign in to comment.