Skip to content

Commit

Permalink
Get ready for release 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Jun 12, 2013
1 parent 320da7b commit 8ed8094
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 19 deletions.
7 changes: 4 additions & 3 deletions Changes
@@ -1,11 +1,12 @@
Revision history for Devel-Trepan-Disassemble Revision history for Devel-Trepan-Disassemble


1.9 June 12, 2013 1.9 June 12, 2013
DB::LineCache is now Devel::Trepan::DB::LineCache - DB::LineCache is now Devel::Trepan::DB::LineCache
- Minor bug fixes


1.8 Dec 18, 2012 1.8 Dec 18, 2012
Deal with deal with customized Perl's. need 0.47 or better for testing output - Deal with deal with customized Perl's. need 0.47 or better for testing output
change. change.


1.7 Oct 20, 2012 1.7 Oct 20, 2012
- Add -from and -to options to allow limiting output - Add -from and -to options to allow limiting output
Expand Down
23 changes: 14 additions & 9 deletions GNUmakefile
@@ -1,4 +1,4 @@
# Copyright (C) 2011 Rocky Bernstein <rocky@cpan.org> # Copyright (C) 2011, 2013 Rocky Bernstein <rocky@cpan.org>
# #
# This program is free software: you can redistribute it and/or modify # This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
Expand All @@ -16,9 +16,11 @@
# PREREQ_PM => { Test::More=>q[0], version=>q[0], ExtUtils::PkgConfig=>q[1.03] } # PREREQ_PM => { Test::More=>q[0], version=>q[0], ExtUtils::PkgConfig=>q[1.03] }


# Note: remake (GNU make with debugging) has a --tasks option which # Note: remake (GNU make with debugging) has a --tasks option which
# will show important targets. In remake, to give a target a # will show important targets. In remake, to give a target a
# user-friendly description, one starts a comment line with #: # user-friendly description, one starts a comment line with #:


GIT2CL ?= git2cl

#: Build everything #: Build everything
all: all:
perl Build --makefile_env_macros 1 perl Build --makefile_env_macros 1
Expand All @@ -28,16 +30,16 @@ build:
perl Build --makefile_env_macros 1 build perl Build --makefile_env_macros 1 build


#: Remove automatically generated files #: Remove automatically generated files
clean: clean:
perl Build --makefile_env_macros 1 clean perl Build --makefile_env_macros 1 clean


code: code:
perl Build --makefile_env_macros 1 code perl Build --makefile_env_macros 1 code


config_data: config_data:
perl Build --makefile_env_macros 1 config_data perl Build --makefile_env_macros 1 config_data


diff: diff:
perl Build --makefile_env_macros 1 diff perl Build --makefile_env_macros 1 diff


#: Create distribution tarball #: Create distribution tarball
Expand Down Expand Up @@ -73,7 +75,7 @@ fakeinstall:
help: help:
perl Build --makefile_env_macros 1 help perl Build --makefile_env_macros 1 help


html: html:
perl Build --makefile_env_macros 1 html perl Build --makefile_env_macros 1 html


#: Install this puppy #: Install this puppy
Expand Down Expand Up @@ -118,9 +120,12 @@ test:
testcover: testcover:
perl Build --makefile_env_macros 1 testcover perl Build --makefile_env_macros 1 testcover


#:Create a log file from the individual commits rmChangeLog:
ChangeLog: rm ChangeLog || true
git log --pretty --numstat --summary | git2cl > $@
#: Create a ChangeLog from git via git log and git2cl
ChangeLog: rmChangeLog
git log --pretty --numstat --summary | $(GIT2CL) >$@


#: Calling perl debugger (perldb) on each test #: Calling perl debugger (perldb) on each test
testdb: testdb:
Expand Down
6 changes: 3 additions & 3 deletions META.json
Expand Up @@ -26,7 +26,7 @@
"requires" : { "requires" : {
"B::Concise" : "0", "B::Concise" : "0",
"Devel::Callsite" : "0.06", "Devel::Callsite" : "0.06",
"Devel::Trepan" : "0.47", "Devel::Trepan" : "0.49",
"Getopt::Long" : "0", "Getopt::Long" : "0",
"perl" : "5.008", "perl" : "5.008",
"rlib" : "0.02" "rlib" : "0.02"
Expand All @@ -40,7 +40,7 @@
}, },
"Devel::Trepan::Disassemble" : { "Devel::Trepan::Disassemble" : {
"file" : "lib/Devel/Trepan/Disassemble.pm", "file" : "lib/Devel/Trepan/Disassemble.pm",
"version" : "1.8" "version" : "1.9"
} }
}, },
"release_status" : "stable", "release_status" : "stable",
Expand All @@ -55,5 +55,5 @@
"url" : "http://github.com/rocky/Perl-Devel-Trepan-Disassemble" "url" : "http://github.com/rocky/Perl-Devel-Trepan-Disassemble"
} }
}, },
"version" : "1.8" "version" : "1.9"
} }
6 changes: 3 additions & 3 deletions META.yml
Expand Up @@ -18,18 +18,18 @@ provides:
version: 0 version: 0
Devel::Trepan::Disassemble: Devel::Trepan::Disassemble:
file: lib/Devel/Trepan/Disassemble.pm file: lib/Devel/Trepan/Disassemble.pm
version: 1.8 version: 1.9
recommends: recommends:
Pod::Text::Color: 2.06 Pod::Text::Color: 2.06
requires: requires:
B::Concise: 0 B::Concise: 0
Devel::Callsite: 0.06 Devel::Callsite: 0.06
Devel::Trepan: 0.47 Devel::Trepan: 0.49
Getopt::Long: 0 Getopt::Long: 0
perl: 5.008 perl: 5.008
rlib: 0.02 rlib: 0.02
resources: resources:
bugtracker: https://github.com/rocky/Perl-Devel-Trepan-Disassemble/issues bugtracker: https://github.com/rocky/Perl-Devel-Trepan-Disassemble/issues
license: http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt license: http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt
repository: http://github.com/rocky/Perl-Devel-Trepan-Disassemble repository: http://github.com/rocky/Perl-Devel-Trepan-Disassemble
version: 1.8 version: 1.9
2 changes: 1 addition & 1 deletion t/data/disasm2.right
@@ -1,4 +1,4 @@
-- main::(-e:1 remapped -e:1) -- main::(-e remapped -e:1)
use Devel::Trepan; use Devel::Trepan;
Package Main Package Main
main program: main program:
Expand Down

0 comments on commit 8ed8094

Please sign in to comment.