resme 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.org +12 -0
  3. data/README.org +16 -15
  4. data/lib/resme/version.rb +1 -1
  5. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66f3a4918e997473187573c54c2b20296068013f716dd7892eaa76e1ba817cbb
4
- data.tar.gz: 75355b94617c3ff3f4f5ee60caa82d59208b9179eb5af018041eec222e7d9442
3
+ metadata.gz: c4b83addb2d49ccfb3361db0479f50f43d4df7a9582321d0a44e2593a62ced8c
4
+ data.tar.gz: 94b3872e6fcb0761568207338304e2e6e2c360f4657f519a808a3e87777d29e0
5
5
  SHA512:
6
- metadata.gz: 4e2ff1e179c492a07a140c1027a320131da9de9018d135ac3517c25b686e3d2a68d48d9157789e536e0f4bd965b7515494762290cd82cf49a5ecea0fd6f00222
7
- data.tar.gz: 7db312c08533de4e73ce8a630c9eb3a3256ebb386312e5c142bec59a333c2263db25e9802ae960c57e19f8274676bc52232b4436e3697d12a119de788acbfffa
6
+ metadata.gz: 49e6883df829d23e6b775bc711e9cbf372317bf3deeaed5e6f13b4cd2b22cc3caecef2c08074e5a7fda6b6bb290e234d8f41dcb25b3a724425defbb64688d17b
7
+ data.tar.gz: '09089b1eb1a2c7078b20a2b076f19bedbbe7651467937cb8b104395c243a4461029e873c9a3b2d1c959fe811cd5093482cb3b02f6b1686cca42b3a743e5ff89c'
data/CHANGELOG.org CHANGED
@@ -1,6 +1,18 @@
1
1
  #+TITLE: CHANGELOG
2
2
  #+AUTHOR: Adolfo Villafiorita
3
3
 
4
+ * Version 1.0.1
5
+
6
+ - Documentation updated
7
+
8
+ * Version 1.0.0
9
+
10
+ - Dropped support for the Europass XML format. The version currently generated
11
+ by resme (corresponding to the 3.3.0 version of the Europass schema) is no
12
+ longer supported by the Europass website. Information about the required
13
+ changes to make to the format is difficult to retrieve.
14
+ - Bug fixes
15
+
4
16
  * Version 0.5.1
5
17
 
6
18
  A bug-fixing release.
data/README.org CHANGED
@@ -4,12 +4,19 @@
4
4
  #+STARTUP: showall
5
5
 
6
6
  Keep your resume in YAML and output it in various formats, including
7
- Org Mode, Markdown, JSON, and the Europass XML format.
7
+ Org Mode, Markdown, and JSON.
8
8
 
9
9
  The rendering engine is based on ERB. This simplifies the creation of
10
10
  new output formats (and extending/modifying the YML structure to one's
11
11
  needs).
12
12
 
13
+ #+BEGIN_QUOTE
14
+ Support for the Europass XML format has been dropped in version 1.0.0, as the
15
+ version generated by resme (Europass schema version 3.3.0) is no longer
16
+ supported by the Europasss website and documentation about the changes to make
17
+ it working again are kind of difficult to retrieve.
18
+ #+END_QUOTE
19
+
13
20
  ** Installation
14
21
  :PROPERTIES:
15
22
  :CUSTOM_ID: installation
@@ -59,21 +66,19 @@ Supported formats include:
59
66
 
60
67
  - =org=: Org Mode format
61
68
  - =md=: Markdown format
62
- - =europass=: Europass format
63
- (http://interop.europass.cedefop.europa.eu/web-services/remote-upload/)
64
69
  - =json=: JSON format (https://jsonresume.org/)
65
70
 
66
- If you are not satisfied with the provided templates, you can write
67
- your own (see below).
71
+ If you are not satisfied with the provided templates, you can write your own
72
+ (see below).
68
73
 
69
74
  Notice that you can specify more than one YML file in input. This allows you to
70
- store data about your resume in different files, if you like to do so
71
- (e.g., work experiences could be in one file and talks in another).
72
- The YML files are merged before processing them.
75
+ store data about your resume in different files, if you like to do so (e.g.,
76
+ work experiences could be in one file and talks in another). The YML files are
77
+ merged before processing them.
73
78
 
74
79
  Full syntax:
75
80
 
76
- #+begin_src shell :results raw output :wrap example
81
+ #+begin_src sh :results raw output :wrap example
77
82
  resme help
78
83
  #+end_src
79
84
 
@@ -220,8 +225,7 @@ https://github.com/avillafiorita/resme.
220
225
  :CUSTOM_ID: license
221
226
  :END:
222
227
 
223
- The gem is available as open source under the terms of the
224
- [[http://opensource.org/licenses/MIT][MIT License]].
228
+ The gem is available as open source under the terms of the [[http://opensource.org/licenses/MIT][MIT License]].
225
229
 
226
230
  ** Change Log
227
231
 
@@ -240,10 +244,7 @@ In [[file:./doc/todo.org][todo.org]] ... guess what is my preferred editor!
240
244
  :END:
241
245
 
242
246
  There are still slight differences in the syntax of entries and in the
243
- way in which the information is formatted in various output formats. For
244
- instance, gender and birthdate are used in the Europass format, but not
245
- in the Markdown format. This is in part due to the different standards
246
- and in part due to personal preferences.
247
+ way in which the information is formatted in various output formats.
247
248
 
248
249
  *Entries are not sorted by date before outputting them. Make sure you
249
250
  put them in the order you want them to appear in your resume.*
data/lib/resme/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  # Version number
4
4
  module Resme
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: resme
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adolfo Villafiorita