diff options
-rwxr-xr-x | publishrelease | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/publishrelease b/publishrelease index fd67d8c8..28214aa0 100755 --- a/publishrelease +++ b/publishrelease | |||
@@ -175,14 +175,15 @@ else | |||
175 | cd luarocks.wiki | 175 | cd luarocks.wiki |
176 | fi | 176 | fi |
177 | 177 | ||
178 | sed -i "s,The current stable release is [^:]*:,The current stable release is '''$v''':," Download.mediawiki | 178 | sed -i "s,Latest release: .*,Latest release: '''LuaRocks $v''' - '$(date +'%d/%b/%Y')'," Download.mediawiki |
179 | 179 | ||
180 | sed -i "s,luarocks-[0-9.]*[0-9],luarocks-$v," Installation-instructions-for-Unix.md | 180 | sed -i "s,luarocks-[0-9.]*[0-9],luarocks-$v,g" Download.mediawiki |
181 | 181 | ||
182 | gawk ' | 182 | gawk ' |
183 | BEGIN { | 183 | BEGIN { |
184 | print "'\'\'\''Version '$v\'\'\'' - '$(date +'%d/%b/%Y')' - [http://luarocks.org/releases/luarocks-'$v'.tar.gz All Unix] -" | 184 | print "'\'\'\''Version '$v\'\'\'' - '$(date +'%d/%b/%Y')' - [http://luarocks.org/releases/luarocks-'$v'.tar.gz All Unix] -" |
185 | print "[http://luarocks.org/releases/luarocks-'$v'-windows-32.zip Windows all-in-one executable]" | 185 | print "[http://luarocks.org/releases/luarocks-'$v'-windows-32.zip Windows all-in-one executable] -" |
186 | print "[http://luarocks.github.io/luarocks/releases other files]" | ||
186 | print "" | 187 | print "" |
187 | } | 188 | } |
188 | // { | 189 | // { |