Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
cacf2200
Commit
cacf2200
authored
Jan 17, 2008
by
Nigel McNie
Browse files
Version bump for 1.0.0alpha2dev
parent
97676b19
Changes
2
Hide whitespace changes
Inline
Side-by-side
htdocs/lib/version.php
View file @
cacf2200
...
...
@@ -28,7 +28,7 @@ defined('INTERNAL') || die();
$config
=
new
StdClass
;
$config
->
version
=
2008011400
;
$config
->
release
=
'1.0.0alpha
1
'
;
$config
->
release
=
'1.0.0alpha
2dev
'
;
$config
->
minupgradefrom
=
2007080700
;
$config
->
minupgraderelease
=
'0.8.0 (release tag 0.8.0_RELEASE)'
;
$config
->
disablelogin
=
false
;
...
...
scripts/release.sh
View file @
cacf2200
#!/bin/bash
#
# Builds release tarballs of Mahara at the given version, ready for
# distribution
set
-e
print_usage
()
{
echo
"Usage is release.sh major minor"
echo
"e.g. release.sh 0.6 2"
echo
""
exit
1
;
echo
"Usage is release.sh [version]"
echo
"e.g. release.sh 0.6.2"
echo
"e.g. release.sh 1.0.0alpha1"
}
MAJOR
=
"
$1
"
MINOR
=
"
$2
"
if
[
-z
"
$1
"
]
;
then
print_usage
exit
1
fi
MAJOR
=
${
1
:0:3
}
MINOR
=
${
1
:4:1
}
MICRO
=
${
1
:5
}
BUILDDIR
=
"/tmp/mahara_release"
CURRENTDIR
=
"
`
pwd
`
"
if
[
-z
"
${
MAJOR
}
"
]
||
[
-z
"
${
MINOR
}
"
]
;
then
print_usage
;
print_usage
exit
1
fi
VERSION
=
"
${
MAJOR
}
.
${
MINOR
}${
MICRO
}
"
if
[
-d
${
BUILDDIR
}
]
;
then
rm
-rf
${
BUILDDIR
}
fi
...
...
@@ -32,7 +43,8 @@ pushd ${BUILDDIR}/mahara
# Switch to the release tag
#git checkout -b "${MAJOR}_STABLE" "origin/${MAJOR}_STABLE"
git checkout
"
${
MAJOR
}
.
${
MINOR
}
_RELEASE"
RELEASETAG
=
"
`
echo
$VERSION
|
tr
'[:lower:]'
'[:upper:]'
`
_RELEASE"
git checkout
$RELEASETAG
# Remove git stuff
rm
.git
-rf
...
...
@@ -43,11 +55,11 @@ bash scripts/pack.sh
popd
mv
mahara mahara-
${
MAJOR
}
.
${
MINOR
}
mv
mahara mahara-
${
VERSION
}
tar
zcf
${
CURRENTDIR
}
/mahara-
${
MAJOR
}
.
${
MINOR
}
.tar.gz mahara-
${
MAJOR
}
.
${
MINOR
}
tar
jcf
${
CURRENTDIR
}
/mahara-
${
MAJOR
}
.
${
MINOR
}
.tar.bz2 mahara-
${
MAJOR
}
.
${
MINOR
}
zip
-qrT9
${
CURRENTDIR
}
/mahara-
${
MAJOR
}
.
${
MINOR
}
.zip mahara-
${
MAJOR
}
.
${
MINOR
}
tar
zcf
${
CURRENTDIR
}
/mahara-
${
VERSION
}
.tar.gz mahara-
${
VERSION
}
tar
jcf
${
CURRENTDIR
}
/mahara-
${
VERSION
}
.tar.bz2 mahara-
${
VERSION
}
zip
-qrT9
${
CURRENTDIR
}
/mahara-
${
VERSION
}
.zip mahara-
${
VERSION
}
popd
#rm -rf ${BUILDDIR}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment