summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam Truzjan <pxqr.sta@gmail.com>2013-11-21 05:05:05 +0400
committerSam Truzjan <pxqr.sta@gmail.com>2013-11-21 05:05:05 +0400
commit646666a09f577c22faf4a3ebe0889156e8f9bac3 (patch)
treeeefec769267d901b8983ad16682844a4891e2891
parentfc4d96d32ad986ec36e511588cb6078d4ad2323a (diff)
Bump version number to 0.0.0.2
-rw-r--r--ChangeLog14
-rw-r--r--bittorrent.cabal11
-rw-r--r--changelog1
3 files changed, 20 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 00000000..67185b52
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,14 @@
12013-11-21 Sam Truzjan <pxqr.sta@gmail.com>
2
3 Version 0.0.0.2
4
5 * InfoHash.hs: added rendering to Text.
6 * Torrent.hs: added pretty printing and content type.
7 * Magnet.hs: added constructors from Torrent datatype.
8 * New: added Data.Torrent.Client, Data.Torrent.Progress,
9 Network.Bittorrent.Core.PeerId, Network.BitTorrent.PeerAddr
10 modules.
11
122013-11-01 Sam Truzjan <pxqr.sta@gmail.com>
13
14 Initial version: 0.0.0.1
diff --git a/bittorrent.cabal b/bittorrent.cabal
index a08386d0..74c85537 100644
--- a/bittorrent.cabal
+++ b/bittorrent.cabal
@@ -1,5 +1,5 @@
1name: bittorrent 1name: bittorrent
2version: 0.0.0.1 2version: 0.0.0.2
3license: BSD3 3license: BSD3
4license-file: LICENSE 4license-file: LICENSE
5author: Sam Truzjan 5author: Sam Truzjan
@@ -23,7 +23,7 @@ description:
23extra-source-files: res/dapper-dvd-amd64.iso.torrent 23extra-source-files: res/dapper-dvd-amd64.iso.torrent
24 res/pkg.torrent 24 res/pkg.torrent
25 , README.md 25 , README.md
26 , changelog 26 , ChangeLog
27 27
28source-repository head 28source-repository head
29 type: git 29 type: git
@@ -33,7 +33,7 @@ source-repository this
33 type: git 33 type: git
34 location: git://github.com/cobit/bittorrent.git 34 location: git://github.com/cobit/bittorrent.git
35 branch: master 35 branch: master
36 tag: v0.0.0.1 36 tag: v0.0.0.2
37 37
38library 38library
39 default-language: Haskell2010 39 default-language: Haskell2010
@@ -41,8 +41,7 @@ library
41 , OverloadedStrings 41 , OverloadedStrings
42 , RecordWildCards 42 , RecordWildCards
43 hs-source-dirs: src 43 hs-source-dirs: src
44 exposed-modules: Paths_bittorrent 44 exposed-modules: Data.Torrent
45 , Data.Torrent
46-- , Data.Torrent.Bitfield 45-- , Data.Torrent.Bitfield
47 , Data.Torrent.Block 46 , Data.Torrent.Block
48 , Data.Torrent.Client 47 , Data.Torrent.Client
@@ -71,6 +70,8 @@ library
71-- , Network.BitTorrent.DHT.Protocol 70-- , Network.BitTorrent.DHT.Protocol
72-- , Network.BitTorrent.Sessions 71-- , Network.BitTorrent.Sessions
73-- other-modules: Network.BitTorrent.Sessions.Types 72-- other-modules: Network.BitTorrent.Sessions.Types
73-- Paths_bittorrent
74
74 build-depends: base == 4.* 75 build-depends: base == 4.*
75 , bits-extras 76 , bits-extras
76 , pretty 77 , pretty
diff --git a/changelog b/changelog
deleted file mode 100644
index 2270803c..00000000
--- a/changelog
+++ /dev/null
@@ -1 +0,0 @@
1* 0.0.0.1: Initial version.