This is an automated email from the git hooks/post-receive script.

kanashiro-guest pushed a change to branch master
in repository libtoml-parser-perl.

      from  2e7a108   don't install README.md
      adds  8b436e8   just idea.
      adds  3a89532   add travis badge to README.md.
      adds  9a1cd95   no use re pragma.
      adds  286ed5d   oops
      adds  b1a9e76   fixed tokenizer
      adds  eb39acd   added tests
      adds  de09921   fixed string capture regexp
      adds  d5b3706   fixed error trace.
      adds  369fcad   use is_deeply
      adds  76e8085   require Test::More 0.98
      adds  c5899d0   Support single quote for String. (TOML.pm support it.)
      adds  2e8855a   added test case for single-quote support.
      adds  eac0a64   refactoring english
      adds  069538c   fix doc a little
      adds  a9a494e   s/engrish/english/
      adds  87ad586   adjust doc format.
      adds  0e6858a   Checking in changes prior to tagging of version 0.01.
      adds  ef66953   fixed #1 no File::Slurp, use Path::Tiny.
      adds  b2d22e9   Oops. Allow empty comment!!
      adds  7986361   added test for empty string.
      adds  c8ae050   allow empty string.
      adds  e87031d   Checking in changes prior to tagging of version 0.02.
      adds  19a6e91   Allow comma at last of array
      adds  0da859c   added strict mode.
      adds  9987af0   these docs are not required now.
      adds  0c05faf   added test case for strict mode.
      adds  df74a4a   fixed strict mode. failed to parse a valid toml when 
comment contain array.
      adds  f32319b   re-publish README.md
      adds  2f59c58   added doc for default value.
      adds  054e8cb   rename "strict" to "strict_mode".
      adds  1099e54   added doc for strict_mode.
      adds  113cead   should die when duplicate key detected.
      adds  613740d   updated changes
      adds  4e47231   re-dump cpanfile by scan-prereqs-cpanfile
      adds  08b9930   Checking in changes prior to tagging of version 0.03.
      adds  651b22d   try to use wercker.
      adds  baa4e41   allow "." in key.
      adds  c81fefd   Switch to Module::Build::Tiny
      adds  781373c   Checking in changes prior to tagging of version 0.04.
      adds  cdf49d6   Remove useless "use utf8;"
      adds  9b8a2dc   "use parent 'Exporter';" => "use Exporter 5.57 'import';"
      adds  ec66fb7   Remove obsolete dependency on Module::Build
      adds  2ee3aa2   Merge pull request #3 from dolmen/fix-dependencies
      adds  d0f3368   updated docs and meta datas.
      adds  eebebe4   Checking in changes prior to tagging of version 0.05.
      adds  dd107eb   fixed dependencies.
      adds  9a35528   support multi line string
      adds  852040c   supports fractional/exponent float
      adds  9a9feed   supports underscores in integer
      adds  4027bda   supports quoted table/array_of_table key
      adds  e6c0e74   supports quoted key
      adds  4ee9b7b   supports new style datetime format
      adds  70f92a1   supports U+XXXXXXXX escape
      adds  e87e079   supports inline table
      adds  c4957b2   single quote string is officialy supported
      adds  abb8f98   added tests for inline table
      adds  c963278   Updated docs
      adds  ac7aaf2   Merge pull request #6 from karupanerura/feature/0.4
      adds  c343ce8   Added badge for codecov
      adds  3b997c9   Fixed test cases for strict mode.
      adds  f44e46c   Fixed something bugs in strict mode.
      adds  d9e8a2b   added test case for unichar8
      adds  9f4c0f3   added test case for broken toml
      adds  c8f5f57   fixed position of error
      adds  1163828   Checking in changes prior to tagging of version 0.06.
      adds  e22e5fa   Imported Upstream version 0.06
       new  cd83994   Merge tag 'upstream/0.06'
       new  37ec642   Update debian/changelog
       new  e836486   Releasing libtoml-parser-perl version 0.06-1

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Changes                                    |   5 +
 MANIFEST                                   |   7 +-
 META.json                                  |  12 +-
 META.yml                                   |  10 +-
 README.md                                  |  10 +-
 author/test-case-maker.pl                  |   4 +-
 cpanfile                                   |   6 +-
 debian/changelog                           |   7 +
 lib/TOML/Parser.pm                         | 111 +++++++++++-----
 lib/TOML/Parser/Tokenizer.pm               | 203 +++++++++++++++++++++++++----
 lib/TOML/Parser/Tokenizer/Strict.pm        |  45 +------
 lib/TOML/Parser/Util.pm                    |   3 +
 minil.toml                                 |   2 +-
 t/001_parser/broken.t                      |  91 ++++++++++++-
 t/001_parser/comma_at_last_of_array.t      |   4 +-
 t/001_parser/dot_in_key.t                  |  34 +++++
 t/001_parser/empty_array.t                 |   4 +-
 t/001_parser/empty_comment.t               |   2 +-
 t/001_parser/empty_string.t                |   4 +-
 t/001_parser/escape.t                      |   6 +-
 t/001_parser/example.t                     |   4 +-
 t/001_parser/example_fruit.t               |   4 +-
 t/001_parser/{empty_string.t => float.t}   |  18 ++-
 t/001_parser/hard_example.t                |  15 ++-
 t/001_parser/inline_table.t                |  41 ++++++
 t/001_parser/{dot_in_array.t => integer.t} |  16 ++-
 t/001_parser/multi_line_string.t           |  64 +++++++++
 t/001_parser/single_quote.t                |   2 +-
 t/001_parser/table.t                       |  52 ++++++++
 t/toml/dot_in_key.toml                     |   3 +-
 30 files changed, 641 insertions(+), 148 deletions(-)
 create mode 100644 t/001_parser/dot_in_key.t
 copy t/001_parser/{empty_string.t => float.t} (54%)
 create mode 100644 t/001_parser/inline_table.t
 rename t/001_parser/{dot_in_array.t => integer.t} (63%)
 create mode 100644 t/001_parser/multi_line_string.t
 create mode 100644 t/001_parser/table.t

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-perl/packages/libtoml-parser-perl.git

_______________________________________________
Pkg-perl-cvs-commits mailing list
Pkg-perl-cvs-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits

Reply via email to