Changeset 14338
- Timestamp:
- 12/19/12 09:44:50 (8 years ago)
- Location:
- branches/1.1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.x/abcl.rdf
r14329 r14338 2 2 @prefix dc: <http://purl.org/dc/elements/1.1/> . 3 3 @prefix abcl: <https://abcl.org#> . 4 @prefix doap: <http://usefulinc.com/ns/doap#> . 4 5 5 <> dc:version "abcl-1.1.0.1" . 6 <> a abcl:release . 6 <> dc:version "abcl-1.1.0.2" ; 7 abcl:releaseCandidate "release" ; 8 a abcl:release ; 9 abcl:tag <http://svn.common-lisp.net/tags/1.1.0.2/> ; 10 dc:identifier <urn:abcl.org/release/1.1.0.2> ; 11 doap:language "Common Lisp" ; 12 dc:created "01-JAN-2004" ; 13 dc:modified "19-DEC-2012" . 7 14 8 15 <> … … 10 17 abcl:tag <http://svn.common-lisp.net/tags/1.1.0/> . 11 18 12 @prefix doap: <http://usefulinc.com/ns/doap#> .13 19 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . 14 20 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . … … 19 25 <> rdfs:seeAlso <urn:not.org> . 20 26 21 @prefix dc: <http://purl.org/dc/elements/1.1/> .22 <>23 abcl:tag <http://svn.common-lisp.net/tags/1.1.0/> ;24 dc:identifier <urn:abcl.org/release/1.1.0> ;25 doap:language "Common Lisp" ;26 dc:created "01-JAN-2004" ;27 dc:modified "07-DEC-2012" ;28 29 dc:version "abcl-1.1.0.1" ;30 abcl:releaseCandidate "release" .31 32 27 <> rdfs:seeAlso [ 33 28 a rdf:Alt ; … … 36 31 rdf:_3 <file:doc/manual/abcl.tex> 37 32 ] . 38 39 40 @prefix dc: <http://purl.org/dc/elements/1.1/> .41 33 42 34 <abcl:doap> … … 77 69 78 70 _:user dc:identifier <http://ville.not.org/#me> ; 79 rdf:label "V-ille" . 71 rdf:label "V-ille" . 80 72 81 73 -
branches/1.1.x/src/org/armedbear/lisp/Version.java
r14333 r14338 42 42 private Version() {} 43 43 44 static final String baseVersion = "1.1.0 -dev";44 static final String baseVersion = "1.1.0.2"; 45 45 46 46 static void init() {
Note: See TracChangeset
for help on using the changeset viewer.