-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo-ann.html
executable file
·114 lines (99 loc) · 4.55 KB
/
go-ann.html
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>runningmaster's githublog : Релиз Go 1.1</title>
<link rel="stylesheet" href="./src/dsgn.css" type="text/css" media="screen, projection" />
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" />
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" />
<link href="/img/favicon.png" rel="icon" />
<link rel="alternate" title="runningmaster's githublog" href="/feed.xml" type="application/atom+xml">
<!--
<link rel="stylesheet" type="text/css" href="/css/highlight.css" />
-->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-31528830-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<a href="http://runningmaster.github.com/" title="Home" id="img_logo"></a>
<a href="http://github.com/runningmaster/" title="Fork me on GitHub" id="img_fork"></a>
<a href="/feed.xml" title="Feed" id="img_feed"></a>
<a href="mailto:[email protected]" title="Mail" id="img_mail"></a>
<div class="site">
<div class="menu">
<a href=".">home</a> |
<a href="./about.html">about</a>
</div>
<div id="home">
<div class="title">
2013-05-13
</div>
<h1>Релиз Go 1.1</h1>
<div id="post">
<p>Вышел релиз Go 1.1, <a href="https://code.google.com/p/go/downloads/list">скачать</a>.
Новость на <a href="http://www.opennet.ru/opennews/art.shtml?num=36927">OpenNet</a>.</p>
<pre>
$ go version
go version go1.1
</pre>
<ul>
<li><code>go1.1</code> 13.05.2013 <a href="http://golang.org/doc/go1.1">release notes</a> <a href="http://swtch.com/~rsc/go11.html">open issues</a></li>
<li><code>go1.0.3</code> 24.09.2012 <a href="https://groups.google.com/d/msg/golang-nuts/co3SvXbGrNk/sGOmwfmBZeYJ">что нового?</a></li>
<li><code>go1.0.2</code> 14.06.2012 <a href="https://groups.google.com/forum/#!topic/golang-announce/9-f_fnXNDzw">что нового?</a></li>
<li><code>go1.0.1</code> 27.04.2012 <a href="https://groups.google.com/forum/#!topic/golang-announce/2ufDgIGFFTk">что нового?</a></li>
<li><code>go1.0.0</code> 28.03.2012 <a href="http://golang.org/doc/go1.html">release notes</a></li>
</ul>
<p><a href="http://code.google.com/p/go/source/list">Траффик</a> изменений в исходном коде проекта.</p>
<p>Установка из исходников вместе с экспериментальными пакетами:</p>
<pre>
$ sudo apt-get install mercurial
$ hg clone https://code.google.com/p/go
$ cd go/src
$ ./all.bash
$ go version
go version devel +a70be086fe02 Sun Dec 16 11:51:47 2012 +0900 linux/amd64
</pre>
<p>Мой черновик настроек:</p>
<pre>
.profile
export GOROOT=$HOME/Development/go
export GOPATH=$HOME/Development/go-get
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin
</pre>
</div>
<h1>Комментарии</h1>
<div id="disqus_thread"></div>
<div id="disqus_thread"></div>
<script type="text/javascript">
var disqus_shortname = 'runningmastersgithublog';
var disqus_developer = 0;
var disqus_identifier = 'go-ann';
var disqus_url = 'http://runningmaster.github.com/go-ann.html';
var disqus_script = 'embed.js';
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<div class="post_footer">
<a href="http://disqus.com">Powered by Disqus</a>
</div>
<div class="footer">
<div class="contact">
© 2013
<a href="mailto:[email protected]" title="Написать письмо">Dmitriy Kovalenko</a> | <a href="/feed.xml" rel="subscribe-rss" title="Подписаться через RSS">RSS</a> | <a href="http://github.com/runningmaster/runningmaster.github.com/blob/master/src/main.go" title="Посмотреть код">Made on Go</a>
</div>
</div>
</div>
</div>
</body>
</html>