summaryrefslogtreecommitdiffabout
path: root/korganizer/version.h
blob: 2f47c90126ce80fa588458c81a0b90ed62d080a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef KORG_VERSION_H
#define KORG_VERSION_H

/*
  Version scheme: "x.y.z build".

  "x.y.z" follow the kdelibs version KOrganizer is released with.
  
  If "z" is 0, it the version is "x.y"
  
  "build" is empty for final versions. For developer version "build" is
  something like "alpha1", "alpha2", "beta1", "beta2", "rc1", "rc2".

  Examples in chronological order:
  
    3.0
    3.0.1
    3.1 alpha1
    3.1 beta1
    3.1 beta2
    3.1 rc1
    3.1
    3.1.1
    3.2 alpha1
*/

static const char *korgVersion = "3.1";

#endif