Skip to content

Commit 2d5f190

Browse files
committed
Fix setup version
1 parent be7ddce commit 2d5f190

File tree

7 files changed

+28
-20
lines changed

7 files changed

+28
-20
lines changed

NEWS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
===========================
12
YARsync 0.1.1
23
===========================
34
YARsync patch release 0.1.1 was made on 30 June 2022.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ In particular, ``rsync`` can be found:
9595
* can be installed on `Windows <https://superuser.com/questions/300263/how-to-use-rsync-from-windows-pc-to-remote-linux-server>`_.
9696

9797
``yarsync`` runs successfully on Linux.
98-
Feel free to report to us if you have problems (or success) running it on your system.
98+
Please report to us if you have problems (or success) running it on your system.
9999

100100
-------
101101
Safety

docs/yarsync.1.gz

-49 Bytes
Binary file not shown.

docs/yarsync.1.html

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="generator" content="pandoc" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
77
<meta name="author" content="Written by Yaroslav Nikitenko" />
8-
<title>YARSYNC(1) yarsync 0.1 | YARsync Manual</title>
8+
<title>YARsync 0.1 manual</title>
99
<style>
1010
html {
1111
line-height: 1.5;
@@ -161,7 +161,7 @@
161161
</head>
162162
<body>
163163
<header id="title-block-header">
164-
<h1 class="title">YARSYNC(1) yarsync 0.1</h1>
164+
<h1 class="title">YARsync 0.1 manual</h1>
165165
<p class="author">Written by Yaroslav Nikitenko</p>
166166
<p class="date">June 2022</p>
167167
</header>
@@ -800,10 +800,10 @@ <h2 id="user-configuration-files">User configuration files</h2>
800800
his presentations in "tex/" in a separate repository. Instead of having
801801
a different directory "~/work_tex", he adds such rules to
802802
<strong>rsync-filter</strong>:</p>
803-
<pre><code>\# all are in git repositories
804-
\- /repos
805-
\# take care to sync separately
806-
\- /tex</code></pre>
803+
<pre><code># all are in git repositories
804+
- /repos
805+
# take care to sync separately
806+
- /tex</code></pre>
807807
<p>In this way, "~/work/tex" and contained git repositories will be
808808
excluded from "~/work" synchronization. Lines starting with
809809
'<strong>#</strong>' are ignored, as well as empty lines. To complicate
@@ -909,10 +909,9 @@ <h1 id="bugs">BUGS</h1>
909909
<p>Requires a filesystem with hard links, rsync version at least 3.1.0
910910
(released 28 September 2013) and Python &gt;= 3.6.</p>
911911
<p>Always do a <strong>--dry-run</strong> before actual changes.</p>
912-
<p>Some corner cases are not fully handled yet and raise Python errors
913-
instead of correct return codes. The output messages deserve to be
914-
improved. Please be patient and please report any bugs or make feature
915-
requests to <a href="https://github.com/ynikitenko/yarsync/issues"
912+
<p>Occasionally Python errors are raised instead of correct return
913+
codes. Please report any bugs or make feature requests to <a
914+
href="https://github.com/ynikitenko/yarsync/issues"
916915
class="uri">https://github.com/ynikitenko/yarsync/issues</a>.</p>
917916
<h1 id="copyright">COPYRIGHT</h1>
918917
<p>Copyright © 2021-2022 Yaroslav Nikitenko. License GPLv3: GNU GPL

docs/yarsync.1.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -601,10 +601,10 @@ but wants to keep his presentations in \"tex/\" in a separate repository.
601601
Instead of having a different directory \"~/work\_tex\", he adds such rules
602602
to **rsync-filter**:
603603

604-
\# all are in git repositories
605-
\- /repos
606-
\# take care to sync separately
607-
\- /tex
604+
# all are in git repositories
605+
- /repos
606+
# take care to sync separately
607+
- /tex
608608

609609
In this way, \"~/work/tex\" and contained git repositories will be excluded
610610
from \"~/work\" synchronization. Lines starting with \'**#**\' are ignored,
@@ -708,10 +708,8 @@ rsync version at least 3.1.0 (released 28 September 2013) and Python >= 3.6.
708708

709709
Always do a **\--dry-run** before actual changes.
710710

711-
Some corner cases are not fully handled yet
712-
and raise Python errors instead of correct return codes.
713-
The output messages deserve to be improved.
714-
Please be patient and please report any bugs or make feature requests to
711+
Occasionally Python errors are raised instead of correct return codes.
712+
Please report any bugs or make feature requests to
715713
<https://github.com/ynikitenko/yarsync/issues>.
716714

717715
# COPYRIGHT

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="yarsync",
10-
version="0.1",
10+
version="0.1.1",
1111
author="Yaroslav Nikitenko",
1212
author_email="metst13@gmail.com",
1313
description="Yet Another Rsync is a file synchronization and backup tool",

yarsync/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,12 @@
1+
"""a file synchronization and backup tool.
2+
3+
To list available commands, run
4+
5+
$ yarsync --help
6+
7+
Read YARsync manual for complete documentation.
8+
https://github.com/ynikitenko/yarsync
9+
"""
10+
111
# otherwise one would have to write 'from yarsync.yarsync import YARsync'
212
from .yarsync import YARsync

0 commit comments

Comments
 (0)