Skip to content

Commit

Permalink
Increment version to 1.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
csmig committed Oct 27, 2020
1 parent 62f58f0 commit 1d90ac6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion api/source/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stig-management-api",
"version": "1.0.0-beta.1",
"version": "1.0.0-beta.2",
"description": "An API for managing evaluations of Security Technical Implementation Guide (STIG) assessments.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion api/source/specification/stig-manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ info:
contact:
name: Carl Smigielski
email: carl.a.smigielski@saic.com
version: 1.0.0-beta.1
version: 1.0.0-beta.2
servers:
- url: 'http://localhost:54000/api'
paths:
Expand Down
2 changes: 1 addition & 1 deletion api/source/utils/config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let config = {
version: '1.0.0-beta.1',
version: '1.0.0-beta.2',
commit: {
branch: process.env.COMMIT_BRANCH || 'na',
sha: process.env.COMMIT_SHA || 'na',
Expand Down
2 changes: 1 addition & 1 deletion clients/extjs/js/Env.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Ext.ns('STIGMAN')

STIGMAN.Env = {
version: '1.0.0-beta.1',
version: '1.0.0-beta.2',
apiBase: "/api" || "../api",
commit: {
branch: "" || "na",
Expand Down
2 changes: 1 addition & 1 deletion clients/extjs/js/Env.js.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Ext.ns('STIGMAN')

STIGMAN.Env = {
version: '1.0.0-beta.1',
version: '1.0.0-beta.2',
apiBase: "${STIGMAN_CLIENT_API_BASE}" || "../api",
commit: {
branch: "${COMMIT_BRANCH}" || "na",
Expand Down
5 changes: 4 additions & 1 deletion docs/Release_Notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
This is the initial beta release of STIG Manager

### 1.0.0-beta.1
Numerous enhancements and bug fixes, including token handling and better concurrency. The project is ready for non-production deployments and pilots to demonstrate suitability for first production release.
Numerous enhancements and bug fixes, including token handling and better concurrency. The project is ready for non-production deployments and pilots to demonstrate suitability for first production release.

### 1.0.0-beta.2
Fixed GitHub Issue #27. STIG checklist imports were critically affected by a regression introduced with beta.1

0 comments on commit 1d90ac6

Please sign in to comment.