summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/105/mistranslation/1650175
blob: 312f7bb35f0e5344d3e3f9273e28da9ccea7a75a (plain) (blame)
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
30
31
32
33
mistranslation: 0.694
semantic: 0.466
network: 0.438
instruction: 0.385
device: 0.354
graphic: 0.316
socket: 0.301
other: 0.271
vnc: 0.240
assembly: 0.130
boot: 0.102
KVM: 0.087

wrong version in 2.8.0-rc03

When you compile qemu the version still 2.7.93 instead 2.8.0-rc03

build/config-host.mak:VERSION=2.7.93

This is intentional and is the way that QEMU release candidates are versioned.

The versioning scheme is MAJOR.MINOR.PATCH where:

0 >= PATCH < 90 is a stable release
PATCH = 90 is the development window for the next MINOR release
91 >= PATCH <= 99 is a release candidate for the next MINOR release

This means 2.7.93 is release candidate 3 for 2.8.

I suppose one reason this scheme has been used is that simple MAJOR.MINOR.PATCH version comparison algorithms will work correctly even if they do not support -rcN notation.

Not a bug.