Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
215d4adb
...
215d4adbec7a8ec4cbe05a1d1e3150b91c7994ae
authored
2011-12-23 09:06:03 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
let's adopt a serious version numbering policy
1 parent
6bf3ecd1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
casper.js
package.json
casper.js
View file @
215d4ad
...
...
@@ -30,12 +30,18 @@
return
;
}
// see http://semver.org/
phantom
.
casperVersion
=
{
major
:
0
,
minor
:
4
,
patch
:
1
,
patch
:
2
,
ident
:
'trunk'
,
toString
:
function
()
{
return
[
this
.
major
,
this
.
minor
,
this
.
patch
].
join
(
'.'
);
var
version
=
[
this
.
major
,
this
.
minor
,
this
.
patch
].
join
(
'.'
);
if
(
this
.
ident
)
{
version
=
[
version
,
this
.
ident
].
join
(
'-'
);
}
return
version
;
}
};
...
...
package.json
View file @
215d4ad
{
"name"
:
"casperjs"
,
"description"
:
"Navigation scripting & testing utility for PhantomJS"
,
"version"
:
"0.4.2"
,
"version"
:
"0.4.2
-trunk
"
,
"keywords"
:
[
"phantomjs"
,
"javascript"
...
...
Please
register
or
sign in
to post a comment