Skip to content

Commit

Permalink
wip on readme for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Davis W. Frank committed Jun 20, 2011
1 parent 3775919 commit b640ce6
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
require 'json'
require 'tilt'
require 'term/ansi-color'
require 'term/ansicolor'

Dir["#{File.dirname(__FILE__)}/tasks/**/*.rb"].each do |file|
require file
Expand Down
22 changes: 20 additions & 2 deletions Release.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
# How to work on a Jasmine Release

## Development
___Jasmine Core Maintainers Only___

We attempt to stick to [Semantic Versioning](). Most of the time, development should be against a new minor version - fixing bugs and adding new features that are backwards compatible.

The current version lives in the file `src/version.json`. This file should be set to the version that is _currently_ under development. That is, if version 1.0.0 is the current release then version should be incremented say, to 1.1.0.

Follow the instructions in `Contribute.markdown` during development.

## Release
__Jasmine Core Maintainers Only__

The current version lives in the file `src/version.json`. We attempt to stick to Semantic Versioning
When ready to release - specs are all green and the stories are done:

1. Update the version in `version.json` to a release candidate - add an `rc` property with a value of 1
1. Update any comments on the public interfaces
1. `rake doc` - builds the `jsdoc` pages
1. Update any links or top-level landing page for the Github Pages
1. `rake build_pages` - builds the Github Pages
1. `rake standalone_safe` - builds the standalone distribution ZIP file


## The Github Pages

Expand Down
2 changes: 1 addition & 1 deletion lib/jasmine.js
Original file line number Diff line number Diff line change
Expand Up @@ -2471,6 +2471,6 @@ jasmine.version_= {
"major": 1,
"minor": 1,
"build": 0,
"revision": 1308288921,
"revision": 1308359945,
"rc": 1
};
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ jasmine.version_= {
"major": 1,
"minor": 1,
"build": 0,
"revision": 1308288921,
"revision": 1308359945,
"rc": 1
};

0 comments on commit b640ce6

Please sign in to comment.