vizor_forms 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.
package/README.md ADDED
@@ -0,0 +1,144 @@
1
+ # vizor_forms
2
+
3
+
4
+ Lib template for the VIZOR ENGINE PLATFORM
5
+
6
+
7
+
8
+ # VIZOR Collaborator instructions
9
+
10
+
11
+ FIRST TIME :
12
+
13
+
14
+ 1. Clone the project:
15
+
16
+ git clone https://github.com/your-username/your-repository.git
17
+
18
+
19
+
20
+ NOTA : Al clonar el template y crear una nueva libreria
21
+ usar rm -rf .git
22
+ para desvincular el proyecto
23
+ y crear otro repositorio en github.
24
+
25
+
26
+
27
+
28
+ 2. Modify:
29
+
30
+ Make your changes in the codebase.
31
+
32
+ 3. Create a local branch:
33
+
34
+ - NOTA : Como nombre del branch se puede usar la versión,
35
+ ejemplo : release-vX.Y.Z
36
+
37
+ Colocar en CHANGELOG.md el detalle de los cambios realizados:
38
+
39
+ ```bash
40
+ git checkout -b feature-branch-name
41
+ ```
42
+
43
+
44
+
45
+ 4. Add and commit changes:
46
+
47
+ git add .
48
+
49
+ git commit -m "Description of the changes"
50
+
51
+ 5. Push the branch:
52
+
53
+ git push origin feature-branch-name
54
+
55
+ 6. Create a pull request on GitHub.
56
+
57
+ 7. Ask the owner to accept and merge
58
+
59
+
60
+
61
+ NEXT STEPS (Continous Development)
62
+
63
+ 1. pull to have the lastest changes
64
+
65
+ git checkout main
66
+ git pull origin main
67
+
68
+
69
+ 2. create a new branch (use a name that clearly comunicate the featur you ar working on)
70
+
71
+ git checkout -b new-feature-branch
72
+
73
+
74
+ 3. Make your changes in the codebase.
75
+
76
+ 4. push the new changes
77
+
78
+ git add .
79
+ git commit -m "Description of changes"
80
+ git push origin new-feature-branch
81
+
82
+
83
+
84
+
85
+ # Managing Versioning
86
+
87
+ Determine the version update type:
88
+ Decide whether the changes constitute a major, minor, or patch update based on the Semantic
89
+
90
+ Versioning guidelines:
91
+
92
+ Major: Incompatible API changes.
93
+ Minor: Backward-compatible functionality.
94
+ Patch: Backward-compatible bug fixes.
95
+
96
+ Update the version number:
97
+ Update the version number in the relevant files (e.g., package.json for Node.js projects) based on the determined version update type.
98
+
99
+ 1. Create a release branch:
100
+
101
+ git checkout main
102
+ git pull origin main
103
+ git checkout -b release-vX.Y.Z
104
+ Update the changelog:
105
+ Document the changes in a CHANGELOG.md file, outlining the new features, bug fixes, and other relevant information for the release.
106
+
107
+ 2. Commit the version update and changelog:
108
+
109
+ git add .
110
+ git commit -m "Bump version to vX.Y.Z and update changelog"
111
+
112
+ 3. Push the release branch:
113
+
114
+ git push origin release-vX.Y.Z
115
+
116
+ 4. Create a pull request for the release branch:
117
+
118
+ 5. Create a pull request to merge the release branch into the main branch.
119
+
120
+ 6. Merge the pull request:
121
+
122
+ Once reviewed and approved, merge the pull request.
123
+
124
+ 7. Tag the release:
125
+
126
+ 8. After merging, create a tag for the new release:
127
+
128
+ git checkout main
129
+ git pull origin main
130
+ git tag -a vX.Y.Z -m "Release version vX.Y.Z"
131
+ git push origin vX.Y.Z
132
+
133
+
134
+ 9. Create a release on GitHub:
135
+
136
+ Go to the GitHub repository, navigate to the "Releases" section, and create a new release using the created tag. Provide the release notes based on the changelog.
137
+
138
+
139
+ By following these steps, you'll maintain a well-organized versioning system, ensuring that the codebase remains structured and that changes are properly documented and released.
140
+
141
+
142
+
143
+
144
+ # vizor_lib_template