Skip to content

Commit e6069dd

Browse files
committed
Version bump - 1.2.3.3
1 parent 8bfa247 commit e6069dd

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

‎DESIGN.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,10 @@ Suggestions:
203203
#### Version Information when Upgrading
204204
- Need a nice chart.
205205

206+
#### Aura Versioning
207+
- Aura uses [Semantic Versioning](http://semver.org/), meaning it's version
208+
numbers are of the form `MAJOR.MINOR.PATCH`.
209+
206210
### Haskell Requirements
207211
#### Strings
208212
- All Strings are represented as `Text` from `Data.Text`. This is available

‎PKGBUILD‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Maintainer: Colin Woodbury <colingw@gmail.com>
22
_hkgname=aura
33
pkgname=aura
4-
pkgver=1.2.3.2
5-
pkgrel=3
4+
pkgver=1.2.3.3
5+
pkgrel=1
66
pkgdesc="A secure package manager for Arch Linux and the AUR written in Haskell."
77
url="https://github.com/fosskers/aura"
88
license=('GPL-3')
@@ -17,7 +17,7 @@ provides=('aura')
1717
conflicts=('aura-git' 'aura-bin')
1818
options=('strip')
1919
source=(https://bitbucket.org/fosskers/aura/downloads/${_hkgname}-${pkgver}.tar.gz)
20-
md5sums=('3e850a147d55efa0ae50634d6a6f7454')
20+
md5sums=('e6a118b39a11330318aea0275d5bc2ad')
2121

2222
build() {
2323
cd ${srcdir}/${_hkgname}-${pkgver}

‎aura.cabal‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: aura
22

3-
version: 1.2.3.2
3+
version: 1.2.3.3
44

55
synopsis: A secure package manager for Arch Linux and the AUR, written in Haskell.
66

‎aura.hs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import Aura.Commands.O as O
6363
type UserInput = ([Flag],[String],[String])
6464

6565
auraVersion :: String
66-
auraVersion = "1.2.3.2"
66+
auraVersion = "1.2.3.3"
6767

6868
main :: IO a
6969
main = getArgs >>= prepSettings . processFlags >>= execute >>= exit

‎changelog.txt‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Aura Changelog
22
==============
3+
1.2.3.3
4+
-------
5+
- `-As --{head,tail}` can now be passed numbers to truncate the results
6+
to any number you want. The default is 10.
7+
- Updated Russian translation.
8+
39
1.2.3.2
410
-------
511
- Expanded Bash completions:

0 commit comments

Comments
 (0)