Skip to content

Commit

Permalink
Update changelog, tree, add persistent-date dir, remove BASHism
Browse files Browse the repository at this point in the history
* Update changelog for v1.0.0
* Add a persistent directory (/persistent-data) not touched by updates
* Update tree structure
* Remove BASHism, fix format in release script
  • Loading branch information
anadahz committed Apr 27, 2017
1 parent a108aaf commit 783a131
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 10 deletions.
20 changes: 20 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Lepidopter v1.0.0 [2017-04-27]
-------------------------------

This release version includes ooniprobe version 2.2.0.

- Add bootloader configuration file
- Adjust to the minimum GPG memory possible (16M) #49
- Add support for hardware RNG #96
- Verbose heartbeat-like LED activity
- Change MOTD color prompt
- Password-less operation for the sudo group
- Ship ooniprobe version 2.2.0
- Do not store folders in the zip image archive #93
- Add a persistent directory (/persistent-data)
- Remove older obfsproxy package
- Add packages: OpenVPN, rng-tools, watchdog
- Fix active meek tor bridges
- Set mount option noatime
- Reduce GPU memory to 32M (was 64M)

Lepidopter v0.3.5-beta [2016-10-16]
------------------------------------

Expand Down
34 changes: 29 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ User documentation and detailed image installation instructions can be found
├── customize customize script used to customize lepidopter image
├── images where the build Lepidopter images created
├── lepidopter-fh Lepidopter image filesystem hierarchy
│   ├── boot
│   │   └── config.txt
│   ├── cleanup.sh cleanup script
│   ├── configure.sh
│   ├── etc
│   │   ├── apt
│   │   │   └── apt.conf.d
Expand All @@ -52,28 +55,49 @@ User documentation and detailed image installation instructions can be found
│   │   │   ├── lepidopter-update
│   │   │   └── ooniprobe
│   │   ├── motd.head Lepidopter MOTD ASCII logo
│   │   ├── network
│   │   │   └── if-up.d
│   │   │   └── run_oonideckgen
│   │   ├── ooniprobe
│   │   │   └── ooniconfig.sh
│   │   ├── ooniprobe.conf
│   │   ├── sudoers
│   │   ├── systemd
│   │   │   └── system
│   │   │   ├── lepidopter-update.service
│   │   │   └── ooniprobe.service
│   │   └── update-motd.d
│   │   └── 50-lepidopter
│   │   ├── update-motd.d
│   │   │   └── 50-lepidopter
│   │   └── watchdog.conf
│   ├── opt
│   │   └── ooni
│   │   ├── lepidopter-update
│   │   │   ├── public.asc
│   │   │   ├── updater.py
│   │   │   └── versions
│   │   │   ├── update-1.py
│   │   │   ├── update-1.py.asc
│   │   │   ├── update-2.py
│   │   │   ├── update-2.py.asc
│   │   │   ├── update-3.py
│   │   │   ├── update-3.py.asc
│   │   │   ├── update-4.py
│   │   │   ├── update-4.py.asc
│   │   │   ├── update-5.py
│   │   │   ├── update-5.py.asc
│   │   │   ├── update-6.py
│   │   │   ├── update-6.py.asc
│   │   │   ├── update-7.py
│   │   │   └── update-7.py.asc
│   │   └── tor_data_dir
│   ├── persistent-data
│   ├── remove_ssh_host_keys.sh
│   ├── setup-ooniprobe.sh
│   ├── usr
│   │   └── share
│   │   └── ooni
│   │   └── decks-available
│   └── var
│   ├── lib
│   │   └── ooni
│   │   └── decks-enabled
│   └── log
│   └── ooni
├── lepidopter-vmdebootstrap_build.sh main lepidopter vmdebootstrap script
Expand Down
2 changes: 1 addition & 1 deletion lepidopter-fh/etc/lepidopter_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.0.0-rc.0
v1.0.0
Empty file.
8 changes: 4 additions & 4 deletions scripts/release
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This script updates lepidopter version and ChangeLog files
set -e

source conf/lepidopter-image.conf
. conf/lepidopter-image.conf
UPDATE_INCREMENT=$(awk '{print $1+1}' ${UPDATE_VERSION_FILE})

usage() {
echo "usage: $0 [options]"
echo -e "\t-a git tag annotation (X.X.X)"
echo -e "\t-m git tag message (\"msg\")"
echo -e "\t-u git tag GPG keyid (0xXXX)"
echo "\t-a git tag annotation (X.X.X)"
echo "\t-m git tag message (\"msg\")"
echo "\t-u git tag GPG keyid (0xXXX)"
}

if [ $# -ne 6 ] ; then
Expand Down

0 comments on commit 783a131

Please sign in to comment.