1

I'm writing a Perl module and right now I'm including in Makefile.PL all of the dependencies. The only problem is I have all of the latest versions of the modules required, but I don't want to limit anyone who has early versions (and either can't update them or requires older versions for old code). Is there any way to find out what would be the lowest version usable with my module without downloading and testing all of the versions? Thanks!

4

2 に答える 2

2

いいえ、自動で伝える方法はありません。おそらく、各モジュールの変更ログを読んで、どのような変更が発生したかを確認することから始めたいと思うでしょう。

于 2012-09-27T00:17:26.967 に答える
1

Dist :: Zillaについて聞いたことがありますか?バージョンの問題には役立ちませんが、モジュールの作成、保守、リリースに関する他の多くのことには役立ちます。他の人が述べたように、動作しているバージョンを知る唯一の方法は、テストを書いてそれらに対してテストすることです...

于 2012-09-27T00:29:23.450 に答える