Skip to content

Commit 482d5d4

Browse files
committed
Bumping version numbers and adding notes to Release Process
Bumpity bump bump
1 parent 03e8c14 commit 482d5d4

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

Documentation/Development/ReleaseProcess.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,15 @@ Well, useful is probably the wrong word. More like entertaining. Here we go.
1818

1919
* Make sure all issues in the milestone are closed - click Issues, Milestones, and it'll show the percent complete. If there's any issues you want to bump to the next round, add the next round's milestone and tag the issues with it.
2020
* When enough PRs are in dev, do a round of code testing in 2008-2016 in the cloud lab.
21+
* Copy all newly synced scripts to each VM and install in master
22+
* Run _TestBed.sql: this has stored proc calls with common parameters. May have to add in new scenarios if new features are added.
2123
* If it passes, bump all the version numbers inside the scripts.
24+
* sp_foreachdb (no version number yet)
25+
* sp_BlitzWho (no version number yet)
26+
* sp_BlitzIndex @Version and @VersionDate
27+
* sp_BlitzFirst @VersionDate (no version)
28+
* sp_BlitzCache @Version and @VersionDate
29+
* sp_Blitz @VersionDate (no version)
2230

2331
## Push to Master
2432

sp_Blitz.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ALTER PROCEDURE [dbo].[sp_Blitz]
2929
AS
3030
SET NOCOUNT ON;
3131
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
32-
SET @VersionDate = '20161210';
32+
SET @VersionDate = '20170201';
3333
SET @OutputType = UPPER(@OutputType);
3434

3535
IF @Help = 1 PRINT '

sp_BlitzCache.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
237237

238238
DECLARE @Version VARCHAR(30);
239239
DECLARE @VersionDate VARCHAR(30);
240-
SET @Version = '4.1';
241-
SET @VersionDate = '20161210';
240+
SET @Version = '4.3';
241+
SET @VersionDate = '20170201';
242242

243243
IF @Help = 1 PRINT '
244244
sp_BlitzCache from http://FirstResponderKit.org

sp_BlitzFirst.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ AS
2929
BEGIN
3030
SET NOCOUNT ON;
3131
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
32-
SET @VersionDate = '20161210'
32+
SET @VersionDate = '20170201'
3333

3434
IF @Help = 1 PRINT '
3535
sp_BlitzFirst from http://FirstResponderKit.org

sp_BlitzIndex.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ AS
3636
SET NOCOUNT ON;
3737
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED;
3838
DECLARE @Version VARCHAR(30);
39-
SET @Version = '4.6';
40-
SET @VersionDate = '20161210';
39+
SET @Version = '4.8';
40+
SET @VersionDate = '20170201';
4141
IF @Help = 1 PRINT '
4242
/*
4343
sp_BlitzIndex from http://FirstResponderKit.org

0 commit comments

Comments
 (0)