Skip to content

Commit

Permalink
Bump Common dependency to 2.1.0RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jun 18, 2011
1 parent 983dd1d commit 87e825a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/vendor/doctrine-common
Submodule doctrine-common updated 36 files
+2 −2 build.xml
+1 −7 lib/Doctrine/Common/Annotations/Annotation.php
+43 −0 lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php
+255 −88 lib/Doctrine/Common/Annotations/AnnotationReader.php
+179 −0 lib/Doctrine/Common/Annotations/CachedReader.php
+8 −16 lib/Doctrine/Common/Annotations/DocLexer.php
+219 −201 lib/Doctrine/Common/Annotations/DocParser.php
+209 −0 lib/Doctrine/Common/Annotations/FileCacheReader.php
+94 −0 lib/Doctrine/Common/Annotations/IndexedReader.php
+152 −0 lib/Doctrine/Common/Annotations/PhpParser.php
+35 −0 lib/Doctrine/Common/Annotations/Reader.php
+0 −3 lib/Doctrine/Common/Cache/AbstractCache.php
+76 −0 lib/Doctrine/Common/Cache/ZendDataCache.php
+29 −18 lib/Doctrine/Common/Lexer.php
+3 −3 lib/Doctrine/Common/Version.php
+6 −0 phpunit.xml.dist
+370 −0 tests/Doctrine/Tests/Common/Annotations/AbstractReaderTest.php
+10 −285 tests/Doctrine/Tests/Common/Annotations/AnnotationReaderTest.php
+56 −0 tests/Doctrine/Tests/Common/Annotations/CachedReaderTest.php
+7 −7 tests/Doctrine/Tests/Common/Annotations/DocLexerTest.php
+96 −120 tests/Doctrine/Tests/Common/Annotations/DocParserTest.php
+26 −0 tests/Doctrine/Tests/Common/Annotations/FileCacheReaderTest.php
+15 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/Route.php
+17 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/Secure.php
+13 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/Annotation/Template.php
+300 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/Controller.php
+9 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/MultipleClassesInFile.php
+10 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/MultipleImportsInUseStatement.php
+10 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/NonNamespacedClass.php
+13 −0 tests/Doctrine/Tests/Common/Annotations/Fixtures/TestInterface.php
+160 −0 tests/Doctrine/Tests/Common/Annotations/PerformanceTest.php
+60 −0 tests/Doctrine/Tests/Common/Annotations/PhpParserTest.php
+271 −0 tests/Doctrine/Tests/Common/Annotations/Regression/BCAnnotationReaderTest.php
+7 −0 tests/Doctrine/Tests/Common/Annotations/TopLevelAnnotation.php
+41 −0 tests/Doctrine/Tests/Common/Cache/ZendDataCacheTest.php
+17 −12 tests/Doctrine/Tests/TestInit.php

0 comments on commit 87e825a

Please sign in to comment.