File: 0001-Fix-version-number-to-1.3.0.patch

package info (click to toggle)
lua-rings 1.3.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 260 kB
  • sloc: ansic: 278; sh: 20; makefile: 17
file content (21 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Enrico Tassi <gareuselesinge@debian.org>
Date: Sun, 11 Aug 2013 17:54:53 +0200
Subject: Fix version number to 1.3.0

---
 src/rings.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/rings.c b/src/rings.c
index 4595903..e384031 100644
--- a/src/rings.c
+++ b/src/rings.c
@@ -343,7 +343,7 @@ static void set_info (lua_State *L) {
         lua_pushliteral (L, "_DESCRIPTION");
         lua_pushliteral (L, "Rings: Multiple Lua States");
         lua_settable (L, -3);    lua_pushliteral (L, "_VERSION");
-        lua_pushliteral (L, "Rings 1.2.2");
+        lua_pushliteral (L, "Rings 1.3.0");
         lua_settable (L, -3);
 }