Skip to content

Commit

Permalink
[packaging] remove CHANGELOG
Browse files Browse the repository at this point in the history
YCSB now tracks what's in a given release using release notes.

ref:
https://github.com/brianfrankcooper/YCSB/releases
  • Loading branch information
busbey committed Jun 28, 2015
1 parent e45ebec commit 77541a9
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 71 deletions.
67 changes: 0 additions & 67 deletions CHANGELOG

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Getting Started
1. Download the latest release of YCSB:

```sh
wget https://github.com/downloads/brianfrankcooper/YCSB/ycsb-0.1.4.tar.gz
curl -O https://github.com/brianfrankcooper/YCSB/releases/download/0.1.4/ycsb-0.1.4.tar.gz
tar xfvz ycsb-0.1.4.tar.gz
cd ycsb-0.1.4
```
Expand Down
2 changes: 1 addition & 1 deletion bin/ycsb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def find_jars(dir, database):

def get_ycsb_home():
dir = os.path.abspath(os.path.dirname(sys.argv[0]))
while "CHANGELOG" not in os.listdir(dir):
while "LICENSE.txt" not in os.listdir(dir):
dir = os.path.join(dir, os.path.pardir)
return os.path.abspath(dir)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<outputDirectory></outputDirectory>
<fileMode>0644</fileMode>
<includes>
<include>CHANGELOG</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
Expand Down
1 change: 0 additions & 1 deletion distribution/src/main/assembly/distribution.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<fileMode>0644</fileMode>
<includes>
<include>README</include>
<include>CHANGELOG</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
</includes>
Expand Down

0 comments on commit 77541a9

Please sign in to comment.