You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat!: First release of v1.0.0. The ecosystem still requires updating which will follow in the next few days^Cfter this commit. Thanks to for everybody involved! It has been a solid community effort
var resumeObject =JSON.parse(fs.readFileSync('resume.json', 'utf8'));
38
+
var fs =require("fs");
39
+
var resumeSchema =require("resume-schema");
40
+
var resumeObject =JSON.parse(fs.readFileSync("resume.json", "utf8"));
41
41
resumeSchema.validate(resumeObject);
42
42
```
43
43
44
44
The JSON Resume schema is available from:
45
45
46
46
```js
47
-
require('resume-schema').schema;
47
+
require("resume-schema").schema;
48
48
```
49
49
50
-
### People
51
-
52
-
* Julian Shapiro for early prototype revisions
53
-
54
50
### Contribute
55
51
56
-
We encourage anyone who's interested in participating in the formation of this standard, to join us on Gitter, and/or to join the discussions [here on GitHub](https://github.com/jsonresume/resume-schema/issues). Also feel free to fork this project and submit new ideas to add to the JSON Resume Schema standard. To make sure all formatting is kept in check, please install the [EditorConfig plugin](http://editorconfig.org/) for your editor of choice.
52
+
We encourage anyone who's interested in participating in the formation of this standard to join the discussions [here on GitHub](https://github.com/jsonresume/resume-schema/issues). Also feel free to fork this project and submit new ideas to add to the JSON Resume Schema standard. To make sure all formatting is kept in check, please install the [EditorConfig plugin](http://editorconfig.org/) for your editor of choice.
57
53
58
54
### Versioning
59
55
@@ -66,17 +62,17 @@ a major-version release. As a result of this policy, you can (and should)
66
62
specify any dependency on JSON Resume Schema by using the Pessimistic Version
67
63
Constraint with two digits of precision.
68
64
69
-
### Research
65
+
We use automatic semver system.
70
66
71
-
-[A more professional recruitment process with structured data](/research/A%20more%20professional%20recruitment%20process%20with%20structured%20CV%20data.pdf).
67
+
Pull requests titles should be formatted as such
72
68
73
-
### Proposals to reinvestigate
74
-
75
-
*[#69 - Standard format for phone numbers](https://github.com/jsonresume/resume-schema/issues/69)
76
-
*[#44 - Person-Job Fit ](https://github.com/jsonresume/resume-schema/issues/44)
77
-
*[#12 - geotag location in work ](https://github.com/jsonresume/resume-schema/issues/12)
78
-
*[#51 - Support multiple positions within one job](https://github.com/jsonresume/resume-schema/issues/51)
69
+
```
70
+
"fix: added something" - will bump the patch version
71
+
"feat: added something" - will bump the minor version
72
+
"feat!: added something" - will bump the major version
0 commit comments