Changeset 14283
- Timestamp:
- 12/03/12 04:49:08 (8 years ago)
- Location:
- branches/1.1.x
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.x/abcl.rdf
r13842 r14283 1 1 # -*- Mode: n3 -*- 2 2 3 @prefix abcl: <https://abcl.org> 3 @prefix abcl: <https://abcl.org> . 4 4 @prefix doap: <http://usefulinc.com/ns/doap#> . 5 5 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . … … 11 11 <> rdfs:seeAlso <urn:not.org> . 12 12 13 <> dc:modified "01-FEB-2012" . 13 @prefix dc: <http://purl.org/dc/elements/1.1/> . 14 <> dc:modified "03-DEC-2012" . 15 16 <> dc:version "abcl-1.1.0" . 17 <> abcl:releaseCandidate "rc-2" . 14 18 15 19 <https://abcl.org/index#doap> 16 20 a doap:Project ; 17 21 doap:label "Armed Bear Common Lisp" ; 18 doap:download-page <http://common-lisp.net/project/armedbear/> ; 22 doap:download <http://common-lisp.net/project/armedbear/> ; 23 doap:shortname "ABCL" ; 24 doap:contributors """( ehu easye v-ille astalla rudi peter)""" . 25 26 <https://abcl.org/index#doap> 27 doap:language 28 "Common Lisp", "Java", "Ant", "Bourne Shell Script", "Windows Batch Script" . 29 30 <https://abcl.org/index#doap> 19 31 doap:license [ 20 _:license <http://usefulinc.com/doap/licenses/gplv2> , 21 <http://usefulinc.com/doap/licenses/gplv2-classpath-exception> ; 22 ] 23 doap:programming-language """("Common Lisp" "Java" "Ant" "Shell Script") """" ; 24 doap:shortname "ABCL"^^xsd:string 25 doap:contributors """( ehu easye v-ille astalla rudi peter)""" . 32 dc:license <http://usefulinc.com/doap/licenses/gplv2> , 33 <http://usefulinc.com/doap/licenses/gplv2-classpath-exception> ; 34 ] . 26 35 27 36 doap:Project rdfs:seeAlso -
branches/1.1.x/src/org/armedbear/lisp/Version.java
r14279 r14283 42 42 private Version() {} 43 43 44 static final String baseVersion = "1.1.0-rc- 1";44 static final String baseVersion = "1.1.0-rc-2"; 45 45 46 46 static void init() {
Note: See TracChangeset
for help on using the changeset viewer.